Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
OpenEvals
/
find-a-leaderboard
like
56
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
e6eb6c0
find-a-leaderboard
/
client
/
src
/
main.jsx
tfrere
remove strict mode in dev
3a58409
29 days ago
raw
Copy download link
history
blame
Safe
160 Bytes
import
{ createRoot }
from
"react-dom/client"
;
import
"./index.css"
;
import
App
from
"./App.jsx"
;
createRoot
(
document
.
getElementById
(
"root"
)).
render
(
<
App
/>
);