// @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'; import 'css-doodle'; import Spinner from 'component/spinner'; type Props = { subscriptions: Array, followedTags: Array, email: ?string, obscureSideBar: boolean, uploadCount: number, }; function SideBar(props: Props) { const { subscriptions, followedTags, obscureSideBar, uploadCount } = props; function buildLink(path, label, icon, guide) { return { navigate: path ? `$/${path}` : '/', label, icon, guide, }; } return obscureSideBar ? (

LBRY

{__('The best decentralized content platform on the web.')}

) : ( ); } export default SideBar;