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 { siteSelection, sites, navigation } from 'calypso/my-sites/controller';
import { MONITORING } from 'calypso/sites/components/site-preview-pane/constants';
import { redirectToHostingFeaturesIfNotAtomic, siteDashboard } from 'calypso/sites/controller';
import { siteMonitoring } from './controller';
export default function () {
page( '/site-monitoring', siteSelection, sites, makeLayout, clientRender );
page(
'/site-monitoring/:site',
siteSelection,
redirectToHostingFeaturesIfNotAtomic,
navigation,
siteMonitoring,
siteDashboard( MONITORING ),
makeLayout,
clientRender
);
}