File size: 484 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import page from '@automattic/calypso-router';
import { makeLayout, render as clientRender } from 'calypso/controller';
import { agencySignupBasePath, agencySignupLegacyPath } from 'calypso/lib/jetpack/paths';
import * as controller from './controller';
export default function () {
page(
agencySignupBasePath(),
controller.requireNoPartnerRecordContext,
controller.signUpContext,
makeLayout,
clientRender
);
page( agencySignupLegacyPath(), agencySignupBasePath() );
}
|