// @flow import * as React from 'react'; import Button from 'component/button'; import classnames from 'classnames'; type SideBarLink = { label: string, path: string, active: boolean, icon: ?string, subLinks: Array, }; type Props = { navLinks: { primary: Array, secondary: Array, }, unreadSubscriptionTotal: number, }; const SideBar = (props: Props) => { const { navLinks, unreadSubscriptionTotal } = props; return ( ); }; export default SideBar;