File size: 333 Bytes
6bb08c4
 
6fd9719
 
 
 
 
 
7096d86
6fd9719
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'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>
  );
};