File size: 248 Bytes
16e11ee |
1 2 3 4 5 6 7 8 9 10 11 |
/**
* @license
* SPDX-License-Identifier: Apache-2.0
*/
import '@tailwindcss/browser';
import ReactDOM from 'react-dom/client';
import Home from './Home';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(<Home />); |