mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-05 08:06:19 +00:00
13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
import { lazy, memo } from "react";
|
|
|
|
const WritingPlaygroundImport = lazy(() =>
|
|
import("~/components/editor/writing-playground").then((mod) => ({
|
|
default: mod.WritingPlayground,
|
|
})),
|
|
);
|
|
|
|
const WritingPlayground = memo(WritingPlaygroundImport);
|
|
|
|
export default function Page() {
|
|
return <WritingPlayground />;
|
|
}
|