Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mebubo
/
gpted
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0235f77
gpted
/
frontend
/
src
/
index.tsx
mebubo
Snapshot
e9e1da2
7 months ago
raw
Copy download link
history
blame
Safe
204 Bytes
import
React
from
"react"
import
{ createRoot }
from
"react-dom/client"
import
App
from
"./components/App"
const
app =
document
.
getElementById
(
"app"
)
const
root =
createRoot
(app!)
root.
render
(
<
App
/>
)