Spaces:
Running
Running
| /** | |
| * @license | |
| * SPDX-License-Identifier: Apache-2.0 | |
| */ | |
| import '@tailwindcss/browser'; | |
| import './index.css'; | |
| import ReactDOM from 'react-dom/client'; | |
| import Home from './Home'; | |
| const root = ReactDOM.createRoot(document.getElementById('root')); | |
| root.render(<Home />); | |