Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aigorithm
/
faketext
like
0
Running
App
Files
Files
Community
main
faketext
/
src
/
index.js
aigorithm
Upload 4 files
a0d0340
verified
2 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
186 Bytes
import
React
from
"react"
;
import
ReactDOM
from
"react-dom/client"
;
import
App
from
"./App.js"
;
const
root =
ReactDOM
.
createRoot
(
document
.
getElementById
(
"root"
));
root.
render
(
<
App
/>
);