MCPcopy Create free account
hub / github.com/Thanas-R/Virdis / App

Function App

src/App.tsx:11–25  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9import Index from "./pages/Index";
10import NotFound from "./pages/NotFound";
11
12const queryClient = new QueryClient();
13
14const App = () => (
15 <ErrorBoundary>
16 <QueryClientProvider client={queryClient}>
17 <TooltipProvider>
18 <Toaster />
19 <Sonner />
20 <LanguageProvider>
21 <BrowserRouter>
22 <Routes>
23 <Route path="/" element={<Index />} />
24 {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */}
25 <Route path="*" element={<NotFound />} />
26 </Routes>
27 </BrowserRouter>
28 </LanguageProvider>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected