Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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() );
}