prithivMLmods's picture
files [initial-commit]
75e5112 verified
raw
history blame contribute delete
249 Bytes
/**
* @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 />);