feat(frontend): add routing skeleton with workspace chat and login pages

This commit is contained in:
root
2026-05-12 13:13:52 +00:00
parent 196535ba5a
commit b3291b5874
6 changed files with 62 additions and 120 deletions

View File

@@ -1,10 +1,13 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import { BrowserRouter } from 'react-router-dom'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
<BrowserRouter>
<App />
</BrowserRouter>
</StrictMode>,
)