Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
ai-deadlines
like
342
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
9fb6103
ai-deadlines
/
src
/
main.tsx
gpt-engineer-app[bot]
Use tech stack vite_react_shadcn_ts
255baa6
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
/>
);