frontend: adding Bootstrap CSS

This commit is contained in:
Mose Müller 2023-08-02 12:06:19 +02:00
parent 04bf555867
commit e7350c9ec0

View File

@ -1,6 +1,9 @@
import App from './App'; import App from './App';
import { createRoot } from 'react-dom/client'; 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 // Render the App component into the #root div
const container = document.getElementById('root'); const container = document.getElementById('root');
const root = createRoot(container); const root = createRoot(container);