import { type Callback } from '@automattic/calypso-router';
import PageViewTracker from 'calypso/a8c-for-agencies/components/a4a-page-view-tracker';
import WooPaymentsSidebar from 'calypso/a8c-for-agencies/components/sidebar-menu/woopayments';
import SidebarPlaceholder from 'calypso/a8c-for-agencies/components/sidebar-placeholder';
import ReferralsBankDetails from '../referrals/primary/bank-details';
import WooPaymentsLanding from './primary/woopayment-landing';
import WooPaymentsDashboard from './primary/woopayments-dashboard';
import WooPaymentsOverview from './primary/woopayments-overview';
import WooPaymentsSiteSetup from './primary/woopayments-site-setup';
export const wooPaymentsLandingContext: Callback = ( context, next ) => {
context.primary = ;
context.secondary = ;
next();
};
export const woopaymentsOverviewContext: Callback = ( context, next ) => {
context.primary = (
<>
>
);
context.secondary = ;
next();
};
export const woopaymentsDashboardContext: Callback = ( context, next ) => {
context.primary = (
<>
>
);
context.secondary = ;
next();
};
export const woopaymentsPaymentSettingsContext: Callback = ( context, next ) => {
context.primary = (
<>
>
);
context.secondary = ;
next();
};
export const woopaymentsSiteSetupContext: Callback = ( context, next ) => {
const siteId = context.query.site_id;
context.primary = (
<>
>
);
context.secondary = ;
next();
};