dashboard
repositories
filestore
activity
search
login
TevinLi
/
admin2-components
AdmSysV2【公共组件库】@前端(For Git Submodule)
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
docs: 更新项目文档,添加 STRUCTURE.md 结构说明
Tevin
9 days ago
75c8d2c51f967c029b146ba0e4cff082efe71753
[~liqx/admin2-components.git]
/
src
/
main.tsx
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>,
)