- {navlinks.map((link, idx) => {
- const url = link.get('url');
- const isExternal = url.startsWith('http');
- const Comp = (isExternal ? 'a' : Link) as 'a';
- const compProps = isExternal ? { href: url, target: '_blank' } : { to: url };
-
- return (
-
-
-
- {(link.getIn(['titleLocales', locale]) || link.get('title')) as string}
-
-
-
- );
- })}
-
-
-