msa1 / front /src /main.tsx
zouhairk's picture
init front
b681a44
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>
);