base structure

This commit is contained in:
hamid zarghami
2025-11-12 11:45:13 +03:30
parent d9560b7d32
commit d36b8e40f0
26 changed files with 1083 additions and 8 deletions
+12
View File
@@ -0,0 +1,12 @@
import React from 'react'
import EditorSidebar from './components/EditorSidebar'
const Editor = () => {
return (
<div>
<EditorSidebar />
</div>
)
}
export default Editor