This commit is contained in:
Mats Tornberg
2025-11-22 15:51:26 +01:00
parent 60f5783a26
commit 00f236cac7
27 changed files with 6319 additions and 67 deletions

10
frontend/src/main.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)