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 { navigation, siteSelection } from 'calypso/my-sites/controller';
import { siteSettings } from 'calypso/my-sites/site-settings/settings-controller';
import { performance } from './controller';
export default function () {
page(
'/settings/performance/:site_id',
siteSelection,
navigation,
siteSettings,
performance,
makeLayout,
clientRender
);
}