Constconst overviewRouteRef = createRouteRef();
const mySubPage = SubPageBlueprint.make({
attachTo: { id: 'page:my-plugin', input: 'pages' },
name: 'overview',
params: {
path: 'overview',
title: 'Overview',
routeRef: overviewRouteRef,
loader: () => import('./components/Overview').then(m => <m.Overview />),
},
});
Creates extensions that are sub-page React components attached to a parent page. Sub-pages are rendered as tabs within the parent page's header.