Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
jbilcke-hf
/
FacePoke
like
1.27k
Running
on
L40S
App
Files
Files
Community
17
0e2a66c
FacePoke
/
client
/
src
/
index.tsx
jbilcke-hf
HF staff
initial commit
d69879c
about 1 month 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
/>
);