diff options
author | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-17 18:33:41 -0600 |
---|---|---|
committer | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-17 18:33:41 -0600 |
commit | 22b15f833d388d2fed12b7f4dcd917c57712cbec (patch) | |
tree | 24b7047e5e4f8193dd42fd7fed6c70e4e2dd0cec /src/main.jsx | |
parent | f929e5156cb1941beb2f5329e7b9b8fae4c7691b (diff) | |
download | ToDo-App-FE-22b15f833d388d2fed12b7f4dcd917c57712cbec.tar.gz ToDo-App-FE-22b15f833d388d2fed12b7f4dcd917c57712cbec.zip |
Added bootstrap library.
We now have better looking assets!
Diffstat (limited to '')
-rw-r--r-- | src/main.jsx | 15 |
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> ); |