Initial commit

This commit is contained in:
Kars van Velzen 2024-10-20 15:54:12 +02:00
commit d365034b15
13 changed files with 4646 additions and 0 deletions

10
src/main.jsx Normal file
View file

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