progress?

This commit is contained in:
2025-01-15 11:31:29 -06:00
parent f1921dc115
commit d1e5f7c61c
4 changed files with 143 additions and 3 deletions
+5 -2
View File
@@ -1,12 +1,14 @@
import { Routes, Route} from 'react-router';
import Home from './pages/home.tsx';
import Inventory from "./pages/inventory.tsx";
import { QueryClientProvider, QueryClient } from '@tanstack/react-query';
// Create a client
const queryClient = new QueryClient()
function App() {
return (
<QueryClientProvider client={queryClient}>
<>
<Routes>
<Route index element={<Home />} />
@@ -15,6 +17,7 @@ function App() {
</>
</QueryClientProvider>
)
}