import { ComponentMeta, ComponentStory } from '@storybook/react'; import MetaComponent from './meta'; /** * Meta - Storybook Meta */ export default { title: 'Molecules/Layout', component: MetaComponent, argTypes: { className: { control: { type: 'text', }, description: 'Set additional classnames to the meta wrapper.', table: { category: 'Styles', }, type: { name: 'string', required: false, }, }, data: { description: 'The page metadata.', type: { name: 'object', required: true, value: {}, }, }, }, } as ComponentMeta; const Template: ComponentStory = (args) => ( ); const data = { publication: { name: 'Published on:', value: 'April 9th 2022' }, categories: { name: 'Categories:', value: [ Category 1 , Category 2 , ], }, }; /** * Layout Stories - Meta */ export const Meta = Template.bind({}); Meta.args = { data, };