File size: 498 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { type Callback } from '@automattic/calypso-router';
import PageViewTracker from 'calypso/a8c-for-agencies/components/a4a-page-view-tracker';
import MainSidebar from '../../components/sidebar-menu/main';
import Overview from './overview';
export const overviewContext: Callback = ( context, next ) => {
context.secondary = <MainSidebar path={ context.path } />;
context.primary = (
<>
<PageViewTracker title="Overview" path={ context.path } />
<Overview />
</>
);
next();
};
|