File size: 310 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import { SiteSwitch } from './components/site-switch';
import type { Context as PageJSContext } from '@automattic/calypso-router';
export default function siteSwitcher( context: PageJSContext, next: () => void ) {
context.primary = <SiteSwitch redirectTo={ context.query.route?.trim() ?? '' } />;
next();
}
|