Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Mistral-AI-Game-Jam
/
description-improv
like
215
Running
App
Files
Files
Community
7
Fetching metadata from the HF Docker repository...
1b620c7
description-improv
/
src
/
main.tsx
Felix Zieger
game init
55a034a
9 days ago
raw
Copy download link
history
blame
Safe
158 Bytes
import
{ createRoot }
from
'react-dom/client'
import
App
from
'./App.tsx'
import
'./index.css'
createRoot
(
document
.
getElementById
(
"root"
)!).
render
(
<
App
/>
);