things and stuff

This commit is contained in:
2025-01-16 14:16:24 -06:00
parent 4aeddfa1f3
commit ded5ec1137
7 changed files with 526 additions and 12 deletions
+5 -2
View File
@@ -2,12 +2,15 @@ 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';
import '@mantine/core/styles.css';
// Create a client
const queryClient = new QueryClient()
import { MantineProvider } from '@mantine/core';
function App() {
return (
return <MantineProvider>{ (
<QueryClientProvider client={queryClient}>
<>
<Routes>
@@ -18,7 +21,7 @@ function App() {
</>
</QueryClientProvider>
)
) }</MantineProvider>;
}
export default App