import * as _ from 'lodash'; import * as React from 'react'; import {Link} from 'react-router-dom'; import styled from 'styled-components'; import {Heading, Paragraph} from 'ts/@next/components/text'; const navData = [ { title: '0x Instant', description: 'Simple crypto purchasing', url: '/next/0x-instant', }, { title: '0x Launch kit', description: 'Build on the 0x protocol', url: '#', }, { title: 'Extensions', url: '#', }, ]; export const DropdownProducts = () => ( {_.map(navData, (item, index) => (
  • {item.title} {item.description && {item.description} }
  • ))}
    ); const List = styled.ul` a { padding: 15px 30px; display: block; } `;