Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
FractalAI
/
Research
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Research
/
frontend
/
src
/
main.jsx
Proff12
Part 2
e618a4f
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
184 Bytes
import
React
from
'react'
import
{ createRoot }
from
'react-dom/client'
import
App
from
'./App.jsx'
import
'./styles.css'
createRoot
(
document
.
getElementById
(
'root'
)).
render
(
<
App
/>
)