import { type Callback } from '@automattic/calypso-router'; import PageViewTracker from 'calypso/a8c-for-agencies/components/a4a-page-view-tracker'; import ReportsSidebar from 'calypso/a8c-for-agencies/components/sidebar-menu/reports'; import SidebarPlaceholder from 'calypso/a8c-for-agencies/components/sidebar-placeholder'; import ReportsLanding from './landing'; import BuildReport from './primary/build-report'; import ReportsDashboard from './primary/dashboard'; import ReportsOverview from './primary/overview'; export const reportsLandingContext: Callback = ( context, next ) => { context.primary = ; context.secondary = ; next(); }; export const reportsOverviewContext: Callback = ( context, next ) => { context.secondary = ; context.primary = ( <> ); next(); }; export const reportsDashboardContext: Callback = ( context, next ) => { context.secondary = ; context.primary = ( <> ); next(); }; export const reportsBuildContext: Callback = ( context, next ) => { context.secondary = ; context.primary = ( <> ); next(); };