import { Tab } from '#/ui/Tab'; export type Item = { text: string; slug?: string; }; export const TabGroup = ({ path, items }: { path: string; items: Item[] }) => { return (
{items.map((item) => ( ))}
); };