import React from 'react'; import { Margin } from 'styled-components-spacing'; import { NavLink } from 'react-router-dom'; import forceArray from 'force-array'; import { SectionList, SectionListItem, SectionListAnchor, ViewContainer } from 'joyent-ui-toolkit'; const getMenuItems = (links = []) => links.map(({ pathname, name }) => ( {name} )); const Menu = ({ links = [] }) => { const _links = forceArray(links); if (!_links.length) { return null; } return ( {getMenuItems(_links)} ); }; export default Menu;