-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.tsx
More file actions
93 lines (89 loc) · 2.29 KB
/
app.tsx
File metadata and controls
93 lines (89 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import { useEffect } from 'react';
import { createBrowserRouter, RouterProvider } from 'react-router-dom';
import './styles.css';
import apiClient from '@api/apiClient';
import Root from '@containers/root';
import NotFound from '@containers/404';
import TestimonialTester from '@containers/TestimonialTester';
import { DonationForm } from '@containers/donations/DonationForm';
import { ShadcnExample } from '@components/ShadcnExample';
import { AuthProvider } from '@components/AuthProvider';
import { ProtectedRoute } from '@components/ProtectedRoute';
import { AdminRoute } from '@components/AdminRoute';
import { LoginPage } from '@containers/auth/LoginPage';
import { ConfirmSentEmailPage } from '@containers/auth/ConfirmSentEmailPage';
import { ConfirmRegisteredPage } from '@containers/auth/ConfirmRegisteredPage';
import { DashboardPage } from '@containers/dashboard/DashboardPage';
import { DonorStatsChart } from '@components/DonorStatsChart';
import SidebarTester from '@containers/dashboard/sidebar/SidebarTester';
const router = createBrowserRouter([
{
path: '/',
element: <Root />,
errorElement: <NotFound />,
},
{
path: '/login',
element: <LoginPage />,
},
{
path: '/confirm-sent-email',
element: <ConfirmSentEmailPage />,
},
{
path: '/confirm-registered',
element: <ConfirmRegisteredPage />,
},
{
path: '/dashboard',
element: <ProtectedRoute />,
children: [
{
path: '',
element: <DashboardPage />,
},
],
},
{
path: '/sidebar-test',
element: <SidebarTester />,
},
{
path: '/test',
element: <TestimonialTester />,
},
{
path: '/shadcn-example',
element: <ShadcnExample />,
},
{
path: '/chart',
element: <AdminRoute />,
children: [
{
path: '',
element: <DonorStatsChart />,
},
],
},
{
path: '/donate',
element: (
<DonationForm
onSuccess={(id) => console.log('Donation successful:', id)}
onError={(err) => console.error('Donation failed:', err)}
/>
),
},
]);
export const App: React.FC = () => {
useEffect(() => {
apiClient.getHello().then((res) => console.log(res));
}, []);
return (
<AuthProvider>
<RouterProvider router={router} />
</AuthProvider>
);
};
export default App;