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...
29f13f9
web
/
frontend
/
src
/
main.tsx
Chandima Prabhath
Track bun.lockb with Git LFS
cc2caf9
2 months ago
raw
Copy download link
history
blame
Safe
162 Bytes
import
{ createRoot }
from
'react-dom/client'
;
import
App
from
'./App.tsx'
;
import
'./index.css'
;
createRoot
(
document
.
getElementById
(
"root"
)!).
render
(
<
App
/>
);