Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Hans-R-D/nexoraV3
insight-ai
/
web
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
978caa8
web
/
frontend
/
src
/
main.tsx
Chandima Prabhath
init
22b1735
about 1 month 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
/>
);