AdmSysV2【公共组件库】@前端(For Git Submodule)
Tevin
4 days ago e1129588206e1ec2489da1d68c20d676058f8bc6
1
2
3
4
5
6
7
8
9
10
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import './index.css'
import App from './App.tsx'
 
createRoot(document.getElementById('root')!).render(
  <StrictMode>
    <App />
  </StrictMode>,
)