OpChan/src/main.tsx

6 lines
161 B
TypeScript
Raw Normal View History

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