import { ComponentMeta, ComponentStory } from '@storybook/react' import { ProposalIdDisplay } from './ProposalIdDisplay' export default { title: 'DAO DAO / packages / stateless / components / proposal / ProposalIdDisplay', component: ProposalIdDisplay, } as ComponentMeta const Template: ComponentStory = (args) => ( ) export const Default = Template.bind({}) Default.args = { proposalPrefix: 'A', proposalNumber: 7, }