diff --git a/src/app/components/app-nav/index.js b/src/app/components/app-nav/index.js index 95a7bba73..074e7b126 100644 --- a/src/app/components/app-nav/index.js +++ b/src/app/components/app-nav/index.js @@ -7,6 +7,12 @@ import { topRoutes, utilityRoutes } from 'App/data/routes'; import { handleHelpLinksClick } from '../../util/helpers'; import Logo from './logo'; +import apiFetch from '@wordpress/api-fetch'; +import { addQueryArgs } from '@wordpress/url'; +import classnames from 'classnames'; +import { filter } from 'lodash'; +import { default as NewfoldNotifications } from '@modules/wp-module-notifications/assets/js/components/notifications/'; + export const SideNavHeader = () => { return (
@@ -146,6 +152,9 @@ export const SideNavMenuSubItem = ( { label, path, action } ) => { }; export const SideNav = () => { + const location = useLocation(); + const hashedPath = '#' + location.pathname; + return ( ); };