2026-03-18 10:06:41 +01:00
|
|
|
import { Routes, Route } from 'react-router-dom'
|
|
|
|
|
import { Dashboard } from './pages/Dashboard/Dashboard'
|
|
|
|
|
|
2026-03-18 09:07:31 +01:00
|
|
|
export default function App() {
|
2026-03-18 10:06:41 +01:00
|
|
|
return (
|
|
|
|
|
<Routes>
|
|
|
|
|
<Route path="/" element={<Dashboard />} />
|
|
|
|
|
</Routes>
|
|
|
|
|
)
|
2026-03-18 09:03:33 +01:00
|
|
|
}
|