This commit is contained in:
josc146
2023-05-04 23:55:24 +08:00
parent 02b9fd8a53
commit 9de121aabf
26 changed files with 2389 additions and 203 deletions

View File

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