Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
API-TRM
/
refs/heads/master
/
.
/
WZY
/
xhs_front
/
src
/
main.jsx
blob: b9a1a6deac8775b5598874b2bc3c7971d82cf211 [
file
] [
log
] [
blame
]
wu
eb6e6ca
2025-06-15 10:35:32 +0800
[
diff
] [
blame
]
1
import
{
StrictMode
}
from
'react'
2
import
{
createRoot
}
from
'react-dom/client'
3
import
'./index.css'
4
import
App
from
'./App.jsx'
5
6
createRoot
(
document
.
getElementById
(
'root'
)).
render
(
7
<
StrictMode
>
8
<
App
/>
9
</
StrictMode
>,
10
)