Banana-Zoom / index.tsx
prithivMLmods's picture
upload app
8ef86d8 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 />);