Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ashwinR
/
Portfolio
like
0
Runtime error
App
Files
Files
Community
main
Portfolio
/
frontend
/
src
/
index.js
ashwinR
Upload 75 files
f332108
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
184 Bytes
import
React
from
'react'
;
import
ReactDOM
from
'react-dom/client'
;
import
App
from
'./App'
;
const
root =
ReactDOM
.
createRoot
(
document
.
getElementById
(
'root'
));
root.
render
(
<
App
/>
);