import { type Callback } from '@automattic/calypso-router';
import PageViewTracker from 'calypso/a8c-for-agencies/components/a4a-page-view-tracker';
import MigrationsSidebar from 'calypso/a8c-for-agencies/components/sidebar-menu/migrations';
import ReferralsBankDetails from '../referrals/primary/bank-details';
import MigrationsCommissions from './primary/migrations-commissions';
import MigrationsOverviewV2 from './primary/migrations-overview-v2';
import SelfMigrationTool from './primary/self-migration-tool';
export const migrationsOverviewContext: Callback = ( context, next ) => {
context.primary = (
<>
>
);
context.secondary = ;
next();
};
export const migrateToPressableContext: Callback = ( context, next ) => {
context.primary = (
<>
>
);
context.secondary = ;
next();
};
export const migrateToWpcomContext: Callback = ( context, next ) => {
context.primary = (
<>
>
);
context.secondary = ;
next();
};
export const migrationsCommissionsContext: Callback = ( context, next ) => {
context.primary = (
<>
>
);
context.secondary = ;
next();
};
export const migrationsPaymentSettingsContext: Callback = ( context, next ) => {
context.primary = (
<>
>
);
context.secondary = ;
next();
};