Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
yderre-aubay
/
midi-player-demo
like
3
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
740ab22
midi-player-demo
/
src
/
community
/
index.tsx
Yann
test
f23825d
over 1 year ago
raw
Copy download link
history
blame
Safe
165 Bytes
import
{ createRoot }
from
"react-dom/client"
import
{
App
}
from
"./components/App"
const
root =
createRoot
(
document
.
querySelector
(
"#root"
)!)
root.
render
(
<
App
/>
)