From 2155550fa36a3bc3c8f66e0926530123b4018cd4 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 16 May 2022 12:46:38 +0200 Subject: refactor: use custom hook for breadcrumb items and schema --- src/components/templates/page/page-layout.stories.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/components/templates/page/page-layout.stories.tsx') diff --git a/src/components/templates/page/page-layout.stories.tsx b/src/components/templates/page/page-layout.stories.tsx index 8e518aa..002b951 100644 --- a/src/components/templates/page/page-layout.stories.tsx +++ b/src/components/templates/page/page-layout.stories.tsx @@ -16,6 +16,7 @@ export default { component: PageLayoutComponent, args: { allowComments: false, + breadcrumbSchema: [], }, argTypes: { allowComments: { @@ -40,6 +41,17 @@ export default { value: {}, }, }, + breadcrumbSchema: { + control: { + type: null, + }, + description: 'The JSON schema for breadcrumb items.', + type: { + name: 'object', + required: true, + value: {}, + }, + }, children: { control: { type: 'text', -- cgit v1.2.3