Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
smolagents/computer-use-agent
mpvasilis
/
CUA
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d4b4714
CUA
/
cua2-front
/
src
/
main.tsx
Amir Mahla
Init CUA2
af1ae43
2 months 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
/>
);