Export necessary components for a custom TemplateListPage

Signed-off-by: Min Kim <minkimcello@gmail.com>
Co-authored-by: Taras Mankovski <taras@frontside.com>
This commit is contained in:
Min Kim
2023-03-16 10:54:53 -04:00
parent a02490f276
commit 1910bfaf2c
2 changed files with 20 additions and 0 deletions
+7
View File
@@ -16,7 +16,14 @@
export { NextScaffolderPage } from './plugin';
export {
TemplateGroups,
type TemplateGroupFilter,
type TemplateGroupsProps,
type NextRouterProps,
type FormProps,
CategoryPicker,
RegisterExistingButton,
type RegisterExistingButtonProps,
ContextMenu,
} from './next';
export { registerComponentRouteRef } from './routes';
@@ -15,3 +15,16 @@
*/
export { TemplateListPage } from './TemplateListPage';
export type { TemplateListPageProps } from './TemplateListPage';
export { TemplateGroups } from './TemplateGroups';
export type {
TemplateGroupFilter,
TemplateGroupsProps,
} from './TemplateGroups';
export { CategoryPicker } from './CategoryPicker';
export { RegisterExistingButton } from './RegisterExistingButton';
export type { RegisterExistingButtonProps } from './RegisterExistingButton';
export { ContextMenu } from './ContextMenu';