We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec57d05 commit 3e30761Copy full SHA for 3e30761
1 file changed
frontend/src/main.jsx
@@ -0,0 +1,10 @@
1
+import { StrictMode } from 'react'
2
+import { createRoot } from 'react-dom/client'
3
+import './index.css'
4
+import App from './App.jsx'
5
+
6
+createRoot(document.getElementById('root')).render(
7
+ <StrictMode>
8
+ <App />
9
+ </StrictMode>,
10
+)
0 commit comments