Gitiles
Code Review
Sign In
gerrit.lilingkun.com
/
G7-Project
/
f60356c8ae699caf39d864e63290c2c22428a36f
/
.
/
frontend
/
my-app
/
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
>,
)