Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Seth0330
/
DocClassify
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
dfd15d5
DocClassify
/
frontend
/
src
/
main.jsx
Seth
Update
25bda12
3 months ago
raw
Copy download link
history
blame
Safe
217 Bytes
import
React
from
"react"
;
import
ReactDOM
from
"react-dom/client"
;
import
App
from
"./App.jsx"
;
ReactDOM
.
createRoot
(
document
.
getElementById
(
"root"
)).
render
(
<
React.StrictMode
>
<
App
/>
</
React.StrictMode
>
);