interactives/src/main.tsx
2025-07-19 12:58:18 +00:00

5 lines
158 B
TypeScript

import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import './index.css'
createRoot(document.getElementById("root")!).render(<App />);