import React from 'react'; import { NavList, NavListItemAction, useNavList, } from '@digigov/ui/navigation/NavList'; const links = [ { name: 'home', href: '#home', label: 'Αρχική', }, { name: 'educational', label: 'Εκπαιδευτικό υλικό', href: '#educational', }, { name: 'news', href: '#news', label: 'Νέα', }, ]; export const NavListWithoutNav = (_: any) => { const layout = 'vertical'; const { registerNavItem } = useNavList(); return ( {links.map((item, key) => ( {item.label} ))} ); }; export default NavListWithoutNav;