source: frontend/src/main.jsx@ 72053b5

Last change on this file since 72053b5 was 72053b5, checked in by Andrej <asumanovski@…>, 5 months ago

first commit

  • Property mode set to 100644
File size: 229 bytes
Line 
1import { StrictMode } from 'react'
2import { createRoot } from 'react-dom/client'
3import './index.css'
4import App from './App.jsx'
5
6createRoot(document.getElementById('root')).render(
7 <StrictMode>
8 <App />
9 </StrictMode>,
10)
Note: See TracBrowser for help on using the repository browser.