Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
UniversityAIChatbot
/
UnivAi
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
UnivAi
/
src
/
main.tsx
oceddyyy
Upload 59 files
13a0af9
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
178 Bytes
import
{ createRoot }
from
"react-dom/client"
;
import
App
from
"./App.tsx"
;
import
"./index.css"
;
createRoot
(
document
.
getElementById
(
"root"
)!).
render
(
<
App
/>
);