/** * Internal dependencies */ import './inbox.scss'; import NotesPanel from '~/inbox-panel'; import { AbbreviatedNotificationsPanel } from './abbreviated-notifications-panel'; export const InboxPanel = ( { hasAbbreviatedNotifications, thingsToDoNextCount, } ) => { return (
{ hasAbbreviatedNotifications && ( ) }
); }; export default InboxPanel;