project init

This commit is contained in:
2023-08-31 14:10:25 +02:00
parent 64d8a6df86
commit d8ccec4374
16 changed files with 1834 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>,
)