base flip

This commit is contained in:
hamid zarghami
2026-01-01 12:02:24 +03:30
parent 97f70eefae
commit 84f93463a3
11 changed files with 479 additions and 17 deletions
+2
View File
@@ -6,6 +6,7 @@ import { clx } from '@/helpers/utils'
import { useSharedStore } from '@/shared/store/sharedStore'
import Home from '@/pages/home/Home'
import Editor from '@/pages/editor/Editor'
import Viewer from '@/pages/viewer/Viewer'
const MainRouter = () => {
const { hasSubMenu } = useSharedStore()
@@ -31,6 +32,7 @@ const MainRouter = () => {
<Routes>
<Route path={Paths.home} element={<Home />} />
<Route path={Paths.editor} element={<Editor />} />
<Route path={Paths.viewer} element={<Viewer />} />
</Routes>
</div>
</div>