11 lines
226 B
TypeScript
11 lines
226 B
TypeScript
|
|
import { EditorLayout } from '@/components/editor/editor-layout';
|
||
|
|
import WithAuth from '@/components/providers/with-auth';
|
||
|
|
|
||
|
|
export default function EditorPage() {
|
||
|
|
return (
|
||
|
|
<WithAuth>
|
||
|
|
<EditorLayout />
|
||
|
|
</WithAuth>
|
||
|
|
);
|
||
|
|
}
|