import { Routes, Route} from 'react-router'; import Home from './pages/home.tsx'; import InventoryList from "./features/inventory/InventoryList.tsx"; import { QueryClientProvider, QueryClient } from '@tanstack/react-query'; // Create a client const queryClient = new QueryClient() function App() { return ( <> } /> } /> ) } export default App