Initial bootstrap

This commit is contained in:
2023-09-11 21:18:26 +01:00
commit f1832442be
16 changed files with 1530 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import React from 'react'
import ReactDOM from 'react-dom/client'
import App from './App.tsx'
import './index.css'
ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<App />
</React.StrictMode>,
)