This commit is contained in:
josc146
2023-05-03 23:38:54 +08:00
commit 02b9fd8a53
35 changed files with 2766 additions and 0 deletions

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

@@ -0,0 +1,14 @@
import React from 'react'
import {createRoot} from 'react-dom/client'
import './style.css'
import App from './App'
const container = document.getElementById('root')
const root = createRoot(container!)
root.render(
<React.StrictMode>
<App/>
</React.StrictMode>
)