initial commit

This commit is contained in:
Dayamond
2025-10-13 16:42:16 +02:00
commit 4004517855
14 changed files with 2016 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import { RouterProvider } from "react-router";
import router from './router';
createRoot(document.getElementById('root')).render(
<StrictMode>
<RouterProvider router={router} />
</StrictMode>,
)