| 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(); | |
| }; | |