Layzur_Pro / src /main.jsx
Shinhati2023's picture
Upload 4 files
5fc8524 verified
Raw
History Blame Contribute Delete
218 Bytes
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App';
import './index.css';
createRoot(document.getElementById('root')!).render(
<App />
</StrictMode>
);