diff --git a/src/main.jsx b/src/main.jsx index 320aeed..298027b 100644 --- a/src/main.jsx +++ b/src/main.jsx @@ -4,6 +4,9 @@ import "./index.css"; import App from "./App"; import { BrowserRouter } from "react-router-dom"; import { worker } from "@uidotdev/react-query-api"; +import { QueryClient, QueryClientProvider } from "react-query"; + +const client = new QueryClient(); new Promise((res) => setTimeout(res, 100)) .then(() => @@ -15,11 +18,13 @@ new Promise((res) => setTimeout(res, 100)) .then(() => { ReactDOM.render( - -
- -
-
+ + +
+ +
+
+
, document.getElementById("root") );