mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-18 21:49:31 +02:00
9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
import { createRoot } from 'react-dom/client';
|
|
import 'tailwindcss/tailwind.css';
|
|
import App from 'components/App';
|
|
|
|
const container = document.getElementById('root') as HTMLDivElement;
|
|
const root = createRoot(container);
|
|
|
|
root.render(<App />);
|