More styling and mocking
This commit is contained in:
parent
ea06cf2ebf
commit
360ff368e1
20 changed files with 354 additions and 109 deletions
|
@ -1,13 +1,17 @@
|
|||
// Import Contexts
|
||||
import { QueryClient, QueryClientProvider} from '@tanstack/react-query'
|
||||
import { JobProvider } from "./ctx/JobContext.jsx";
|
||||
import { StoreProvider } from "./ctx/StoreContext.jsx";
|
||||
import { BrowserRouter } from "react-router-dom";
|
||||
// Import Views
|
||||
import Views from "./views/Views.jsx";
|
||||
|
||||
const queryClient = new QueryClient()
|
||||
|
||||
export default function Dashboard() {
|
||||
return (
|
||||
<div className="qualiteer">
|
||||
<QueryClientProvider client={queryClient}>
|
||||
<StoreProvider>
|
||||
<JobProvider>
|
||||
<BrowserRouter>
|
||||
|
@ -15,6 +19,7 @@ export default function Dashboard() {
|
|||
</BrowserRouter>
|
||||
</JobProvider>
|
||||
</StoreProvider>
|
||||
</QueryClientProvider>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue