mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-06 08:16:03 +00:00
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
import React from "react";
|
|
import Editor from "../../components/editor/advanced-editor";
|
|
|
|
function page() {
|
|
return <Editor setContent={() => {}} />;
|
|
}
|
|
|
|
export default page;
|