From 22b15f833d388d2fed12b7f4dcd917c57712cbec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Oliva?= Date: Wed, 17 May 2023 18:33:41 -0600 Subject: Added bootstrap library. We now have better looking assets! --- src/main.jsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'src/main.jsx') 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( - - - - - + + + + + ); -- cgit v1.2.3