// import import { useEffect } from 'react'; import { sectionNavigation } from '@vendor-web/js/components/sectionNavigation.js' import NavigationWrapper from '@/components/aia/navigation-wrapper'; type Props = { links: { name: string; href: string; default?: boolean; }[]; } export default function SectionNavigation( { links = [] }: Props ) { useEffect(() => { sectionNavigation(); }, []); return (
); }