feat(app): scaffold entry point — providers et router minimal
This commit is contained in:
parent
16a8bfbe41
commit
9c5e1d741b
3 changed files with 58 additions and 0 deletions
21
src/app/router.tsx
Normal file
21
src/app/router.tsx
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import { Routes, Route } from 'react-router-dom'
|
||||
|
||||
export function AppRouter() {
|
||||
return (
|
||||
<Routes>
|
||||
<Route path="/" element={<ScaffoldPlaceholder />} />
|
||||
</Routes>
|
||||
)
|
||||
}
|
||||
|
||||
function ScaffoldPlaceholder() {
|
||||
return (
|
||||
<main className="p-6">
|
||||
<h1 className="text-2xl font-semibold">Expria — scaffold Sprint 0</h1>
|
||||
<p>
|
||||
Aucune feature n'est encore branchée. Les routes seront ajoutées au fil
|
||||
des sprints.
|
||||
</p>
|
||||
</main>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue