import type { ReactNode } from 'react' import { SidebarMenuButton } from '@admin/components/ui/sidebar' import Link from 'next/link' export function SidebarNavLinkSkeleton({ href, children }: { href: string; children: ReactNode }) { return }>{children} }