Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jbilcke-hf
/
FacePoke_CLONE-THIS-REPO-TO-USE-IT
like
2.2k
Paused
App
Files
Files
Community
42
Fetching metadata from the HF Docker repository...
8378233
FacePoke_CLONE-THIS-REPO-TO-USE-IT
/
client
/
src
/
index.tsx
Julian Bilcke
initial commit
d69879c
about 1 year ago
raw
Copy download link
history
blame
Safe
159 Bytes
import
{ createRoot }
from
'react-dom/client'
;
import
{
App
}
from
'./app'
;
const
root =
createRoot
(
document
.
getElementById
(
'root'
)!);
root.
render
(
<
App
/>
);