Replit Commit
This commit is contained in:
commit
f49f965a42
41 changed files with 32720 additions and 0 deletions
23
src/Dashboard.jsx
Normal file
23
src/Dashboard.jsx
Normal file
|
@ -0,0 +1,23 @@
|
|||
import { useContext } from "react";
|
||||
|
||||
// Import Contexts
|
||||
import { JobProvider } from "./ctx/JobContext.jsx";
|
||||
import { ViewProvider } from "./ctx/ViewContext.jsx";
|
||||
import { StoreProvider } from "./ctx/StoreContext.jsx";
|
||||
|
||||
// Import Views
|
||||
import Views from "./Views.jsx";
|
||||
|
||||
export default function Dashboard() {
|
||||
return (
|
||||
<div className="qualiteer">
|
||||
<JobProvider>
|
||||
<StoreProvider>
|
||||
<ViewProvider>
|
||||
<Views />
|
||||
</ViewProvider>
|
||||
</StoreProvider>
|
||||
</JobProvider>
|
||||
</div>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue