structure + layout header sidebar

This commit is contained in:
hamid zarghami
2025-10-14 13:06:18 +03:30
commit 31967a2ecb
53 changed files with 6362 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { type FC } from 'react'
import '@/assets/fonts/irancell/style.css'
import { BrowserRouter } from 'react-router-dom'
// import { getToken } from './config/func'
import MainRouter from './router/MainRouter'
// import AuthRouter from './router/AuthRouter'
const App: FC = () => {
// const isLoggedIn = getToken()
return (
<BrowserRouter>
{/* {isLoggedIn ? <MainRouter /> : <AuthRouter />} */}
<MainRouter />
</BrowserRouter>
)
}
export default App