Add src/main.tsx

This commit is contained in:
Huzaifa Inam 2026-08-22 21:24:53 +00:00
parent c4a4bdbdfe
commit ce8a239ec5

10
src/main.tsx Normal file
View file

@ -0,0 +1,10 @@
import {StrictMode} from 'react';
import {createRoot} from 'react-dom/client';
import App from './App.tsx';
import './index.css';
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
);