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