Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
API-TRM
/
d1c06e64d261c2dd8528115b0642d67ab0db5e46
/
.
/
JWLLL
/
API_front
/
src
/
main.jsx
blob: b9a1a6deac8775b5598874b2bc3c7971d82cf211 [
file
] [
log
] [
blame
]
import
{
StrictMode
}
from
'react'
import
{
createRoot
}
from
'react-dom/client'
import
'./index.css'
import
App
from
'./App.jsx'
createRoot
(
document
.
getElementById
(
'root'
)).
render
(
<
StrictMode
>
<
App
/>
</
StrictMode
>,
)