-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.tsx
More file actions
26 lines (22 loc) · 748 Bytes
/
App.tsx
File metadata and controls
26 lines (22 loc) · 748 Bytes
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
import { QueryClient, QueryClientProvider } from 'react-query';
import { Toaster } from 'sonner';
import '@/i18n/i18n';
import '/node_modules/flag-icons/css/flag-icons.min.css';
import { Analytics } from '@/Analytics';
import LoadingApplication from '@/pages/LoadingApplication';
import { Routes } from '@/Routes';
const queryClient = new QueryClient();
function App() {
return (
<QueryClientProvider client={queryClient}>
<div className="h-screen w-screen overflow-auto">
<LoadingApplication>
<Routes />
<Analytics />
</LoadingApplication>
<Toaster />
</div>
</QueryClientProvider>
);
}
export default App;