File size: 336 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { type Callback } from '@automattic/calypso-router';
import SidebarPlaceholder from 'calypso/a8c-for-agencies/components/sidebar-placeholder';
import Landing from './landing';

export const landingContext: Callback = ( context, next ) => {
	context.primary = <Landing />;
	context.secondary = <SidebarPlaceholder />;
	next();
};