import Link from 'next/link'; const TABS = [ { href: '/admin/accounts', label: 'Ledger' }, { href: '/admin/accounts/stock', label: 'Stock' }, { href: '/admin/accounts/purchases', label: 'Purchases' }, { href: '/admin/accounts/expenses', label: 'Expenses' }, { href: '/admin/accounts/reports', label: 'Reports' }, ] as const; export default function AccountsNav({ active }: { active: (typeof TABS)[number]['href'] }) { return (
{TABS.map((tab) => ( {tab.label} ))}
); }