Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import page from '@automattic/calypso-router';
import {
A4A_TEAM_ACCEPT_INVITE_LINK,
A4A_TEAM_INVITE_LINK,
A4A_TEAM_LINK,
} from 'calypso/a8c-for-agencies/components/sidebar-menu/lib/constants';
import { requireAccessContext } from 'calypso/a8c-for-agencies/controller';
import { makeLayout, render as clientRender } from 'calypso/controller';
import { teamAcceptInviteContext, teamContext, teamInviteContext } from './controller';
export default function () {
page( A4A_TEAM_INVITE_LINK, requireAccessContext, teamInviteContext, makeLayout, clientRender );
page( A4A_TEAM_ACCEPT_INVITE_LINK, teamAcceptInviteContext, makeLayout, clientRender );
page( `${ A4A_TEAM_LINK }/:tab?`, requireAccessContext, teamContext, makeLayout, clientRender );
}