feat: begin working on editor

This commit is contained in:
Stevan Freeborn
2023-09-09 23:53:20 -05:00
parent 3da72be9bd
commit f57f8e26c2
5 changed files with 88 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
import Editor from '@/components/Editor';
export default function AddPost() {
return (
<main>
<Editor />
</main>
);
}