23 | );
24 | };
25 |
26 | export default Home;
27 |
--------------------------------------------------------------------------------
/src/js/index.js:
--------------------------------------------------------------------------------
1 | //import react into the bundle
2 | import React from "react";
3 | import ReactDOM from "react-dom/client";
4 |
5 | // include your styles into the webpack bundle
6 | import "../styles/index.css";
7 |
8 | //import your own components
9 | import Home from "./component/home.jsx";
10 |
11 | //render your react application
12 | ReactDOM.createRoot(document.getElementById('app')).render(