Spaces:
Sleeping
Sleeping
| import React from 'react'; | |
| import ReactDOM from 'react-dom/client'; | |
| import HomePage from './src/pages/HomePage.jsx'; | |
| import './src/styles/main.css'; | |
| const root = ReactDOM.createRoot(document.getElementById('root')); | |
| root.render(<HomePage />); | |