2023-12-14 20:11:45 +02:00
|
|
|
import { Routes, Route } from 'react-router-dom';
|
|
|
|
import HomePage from "@/app/pages/HomePage"
|
|
|
|
import RootLayout from '@/app/Layout';
|
2023-12-19 00:23:35 +02:00
|
|
|
import StatementsPage from './app/pages/StatementsPage.jsx';
|
2023-12-28 23:26:59 +02:00
|
|
|
import TransactionsPage from "@/app/pages/TransactionsPage.jsx";
|
2023-12-14 20:11:45 +02:00
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<RootLayout>
|
|
|
|
<Routes>
|
|
|
|
<Route path="/" element={<HomePage />} />
|
2023-12-19 00:23:35 +02:00
|
|
|
<Route path="/statements" element={<StatementsPage />} />
|
2023-12-28 23:26:59 +02:00
|
|
|
<Route path="/transactions" element={<TransactionsPage />} />
|
2023-12-14 20:11:45 +02:00
|
|
|
</Routes>
|
|
|
|
</RootLayout>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App
|