omni-tools/src/index.tsx

9 lines
245 B
TypeScript
Raw Normal View History

2024-06-22 22:06:16 +01:00
import { createRoot } from 'react-dom/client';
import 'tailwindcss/tailwind.css';
import App from 'components/App';
2024-06-19 18:08:19 +01:00
2024-06-22 22:06:16 +01:00
const container = document.getElementById('root') as HTMLDivElement;
const root = createRoot(container);
2024-06-19 18:08:19 +01:00
2024-06-22 22:06:16 +01:00
root.render(<App />);