add index page (#73)

add index page
This commit is contained in:
zizifn
2022-12-13 23:22:38 +08:00
committed by GitHub
parent 7992dc2d0d
commit 1488a6e5f7
30 changed files with 9775 additions and 280 deletions

View File

@@ -0,0 +1,13 @@
import { StrictMode } from 'react';
import * as ReactDOM from 'react-dom/client';
import App from './app/app';
import './styles.css';
const root = ReactDOM.createRoot(
document.getElementById('root') as HTMLElement
);
root.render(
<StrictMode>
<App />
</StrictMode>
);