Agile / project 5 /src /main.tsx
thatsdevvvv's picture
Upload 2050 files
390cffd verified
raw
history blame contribute delete
234 Bytes
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>
);