diff options
Diffstat (limited to 'src/components/organisms/layout/overview.stories.tsx')
| -rw-r--r-- | src/components/organisms/layout/overview.stories.tsx | 11 | 
1 files changed, 6 insertions, 5 deletions
| diff --git a/src/components/organisms/layout/overview.stories.tsx b/src/components/organisms/layout/overview.stories.tsx index 8f56d3a..562d7c4 100644 --- a/src/components/organisms/layout/overview.stories.tsx +++ b/src/components/organisms/layout/overview.stories.tsx @@ -1,5 +1,6 @@  import type { ComponentMeta, ComponentStory } from '@storybook/react'; -import { Overview, type OverviewMeta } from './overview'; +import type { MetaItemData } from '../../molecules'; +import { Overview } from './overview';  /**   * Overview - Storybook Meta @@ -54,10 +55,10 @@ const cover = {    width: 640,  }; -const meta: OverviewMeta = { -  creation: { date: '2022-05-09' }, -  license: 'Dignissimos ratione veritatis', -}; +const meta = [ +  { id: 'creation-date', label: 'Creation date', value: '2022-05-09' }, +  { id: 'license', label: 'License', value: 'Dignissimos ratione veritatis' }, +] satisfies MetaItemData[];  /**   * Overview Stories - Default | 
