Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Kaelan
/
fall-detection
like
2
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d5fbbd4
fall-detection
/
src
/
index.js
Kaelan
start
01e1043
over 1 year ago
raw
Copy download link
history
blame
Safe
224 Bytes
import
React
from
'react'
;
import
ReactDOM
from
'react-dom'
;
import
'./index.css'
;
import
App
from
'./App'
;
ReactDOM
.
render
(
<
React.StrictMode
>
<
App
/>
</
React.StrictMode
>
,
document
.
getElementById
(
'root'
)
);