Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Zelyanoth
/
stock
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
stock
/
src
/
main.tsx
Zelyanoth
Upload 101 files
24d40b9
verified
26 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
Wrap lines
163 Bytes
import
{ createRoot }
from
'react-dom/client'
import
App
from
'./App.tsx'
import
'./index.css'
createRoot
(
document
.
getElementById
(
"root"
)!).
render
(
<
App
/>
);