Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fiewolf1000
/
we-rss
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
we-rss
/
apps
/
web
/
src
/
main.tsx
fiewolf1000
Upload 98 files
4c0481f
verified
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
164 Bytes
import
ReactDOM
from
'react-dom/client'
;
import
App
from
'./App.tsx'
;
import
'./index.css'
;
ReactDOM
.
createRoot
(
document
.
getElementById
(
'root'
)!).
render
(
<
App
/>
);