Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
crossentropy-ai
/
rlcube
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2d3238e
rlcube
/
src
/
app
/
page.tsx
imwithye
add controls ui
6fd9719
2 months ago
raw
Copy download link
history
blame
Safe
213 Bytes
import
{
Canvas
}
from
'@/components/canvas'
;
import
{
UI
}
from
'@/components/ui'
;
export
default
function
Home
(
) {
return
(
<
div
className
=
"w-full h-full"
>
<
UI
/>
<
Canvas
/>
</
div
>
);
}