mirror of
https://github.com/BarkProductions/barkman.git
synced 2026-06-17 07:51:54 +00:00
things and stuff
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user