AdmSysV2【公共组件库】@前端(For Git Submodule)
Tevin
9 days ago 626b8e453322a1bacb28b49e642cc3a3c533bebf
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>,
)