aboutsummaryrefslogtreecommitdiff
path: root/src/main.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.jsx')
-rw-r--r--src/main.jsx15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/main.jsx b/src/main.jsx
index a7ca55d..38d8b53 100644
--- a/src/main.jsx
+++ b/src/main.jsx
@@ -1,14 +1,15 @@
import React from "react";
import ReactDOM from "react-dom/client";
-import { Provider } from 'react-redux'
+import { Provider } from "react-redux";
import { store } from "./app/store";
import App from "./App";
-import "./index.css";
+import "bootstrap/dist/css/bootstrap.css";
+import "bootstrap/dist/js/bootstrap";
ReactDOM.createRoot(document.getElementById("root")).render(
- <React.StrictMode>
- <Provider store={store}>
- <App />
- </Provider>
- </React.StrictMode>
+ <React.StrictMode>
+ <Provider store={store}>
+ <App />
+ </Provider>
+ </React.StrictMode>
);