OpChan/src/main.tsx

6 lines
158 B
TypeScript
Raw Normal View History

2025-04-15 16:28:03 +05:30
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
import './index.css'
createRoot(document.getElementById("root")!).render(<App />);