Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
API-TRM
/
55bbfb312ea670526c1e70d058e0a34334f6a52f
/
.
/
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
>,
)