Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Elkins
/
wewe-rss
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
wewe-rss
/
apps
/
web
/
src
/
main.tsx
Elkins
Upload 84 files
ca668ce
verified
about 1 year 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
/>
);