25 | );
26 | };
27 |
28 | export default Home;
--------------------------------------------------------------------------------
/src/js/main.jsx:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import ReactDOM from 'react-dom/client'
3 |
4 | //Bootstrap
5 | import "bootstrap/dist/css/bootstrap.min.css";
6 | import "bootstrap"
7 |
8 | // index.css'
9 | import '../styles/index.css'
10 |
11 | // components
12 | import Home from './components/Home';
13 |
14 | ReactDOM.createRoot(document.getElementById('root')).render(
15 |