import { Tab, TabList } from 'tvu-react-pilot' const Surface = ({ children }: any) => (
{children}
) const items = [ { label: 'Overview', value: 'overview' }, { label: 'Sources', value: 'sources' }, { label: 'Monitor', value: 'monitor' }, ] // Previews are static (no state) — pass a fixed `value` matching one item. export const Line = () => ( {}}> {}} /> ) export const Text = () => ( {}}> {}} /> ) export const Filled = () => ( {}}> {}} /> )