Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jurmy24
/
urdf-visualizer
like
3
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
633fd3a
urdf-visualizer
/
viewer
/
src
/
main.tsx
jurmy24
feat: add viewer code
72f0edb
11 days ago
raw
Copy download link
history
blame
Safe
161 Bytes
import
{ createRoot }
from
"react-dom/client"
;
import
App
from
"./App.tsx"
;
import
"./index.css"
;
createRoot
(
document
.
getElementById
(
"root"
)!).
render
(
<
App
/>
);