import { cn } from '@/helpers/styles'; import styles from './tabs.module.css'; interface TabsProps { onSelect: (id: string) => void; selectedTab: string; tabs: Array<{ id: string; label: string }>; } export function Tabs({ onSelect, selectedTab, tabs }: TabsProps) { return (
{tabs.map(tab => ( ))}
); }