From e7350c9ec03b2347c22a0762a0d9768e31f1a62d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Wed, 2 Aug 2023 12:06:19 +0200 Subject: [PATCH] frontend: adding Bootstrap CSS --- frontend/src/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index d179705..e48efbf 100644 --- a/frontend/src/index.tsx +++ b/frontend/src/index.tsx @@ -1,6 +1,9 @@ import App from './App'; import { createRoot } from 'react-dom/client'; +// Importing the Bootstrap CSS +import 'bootstrap/dist/css/bootstrap.min.css'; + // Render the App component into the #root div const container = document.getElementById('root'); const root = createRoot(container);