// @flow import * as PAGES from 'constants/pages'; import * as ICONS from 'constants/icons'; import * as React from 'react'; import Button from 'component/button'; import Tag from 'component/tag'; type Props = { subscriptions: Array, followedTags: Array, }; function SideBar(props: Props) { const { subscriptions, followedTags } = props; const buildLink = (path, label, icon, guide) => ({ navigate: path ? `$/${path}` : '/', label, icon, guide, }); const renderLink = linkProps => (
  • ); return (
    ); } export default SideBar;