imwithye's picture
disable selection
7096d86
raw
history blame contribute delete
333 Bytes
'use client';
import { UIControls } from './ui-controls';
import { UITitle } from './ui-title';
export const UI = () => {
return (
<div className="absolute inset-0">
<div className="w-full h-full p-6 flex flex-col justify-between select-none">
<UITitle />
<UIControls />
</div>
</div>
);
};