rlcube / src /app /page.tsx
imwithye's picture
add controls ui
6fd9719
raw
history blame
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>
);
}