// @flow import * as React from 'react'; import styled from 'styled-components'; import { map, groupBy } from 'lodash'; export default function IntegrationMenu({ integrations }: { integrations: * }) { const categories = groupBy(integrations, i => i.category); return ( ); } const MenuItem = styled.a` display: flex; align-items: center; font-size: 16px; color: ${props => props.theme.text}; `; const Logo = styled.img` user-select: none; height: 18px; border-radius: 2px; margin-right: 8px; `; const List = styled.ul` list-style: none; margin: 0; padding: 0; `;