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