Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
HyperCluster
/
Fara-BrowserUse
like
4
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
38737cb
Fara-BrowserUse
/
src
/
main.tsx
VyoJ
Upload 78 files
7fcdb70
verified
11 days ago
raw
Copy download link
history
blame
Safe
166 Bytes
import
{ createRoot }
from
"react-dom/client"
;
import
App
from
"./App.tsx"
;
import
"./index.css"
;
createRoot
(
document
.
getElementById
(
"root"
)!).
render
(
<
App
/>
);