diff --git a/src/routes/safe/component/Transactions/MultisigForm/MultisigForm.stories.js b/src/routes/safe/component/Transactions/MultisigForm/MultisigForm.stories.js index 35583072..6c65ab26 100644 --- a/src/routes/safe/component/Transactions/MultisigForm/MultisigForm.stories.js +++ b/src/routes/safe/component/Transactions/MultisigForm/MultisigForm.stories.js @@ -7,7 +7,7 @@ import MultisigForm from './index' const FrameDecorator = story => ( -
+
{ story() }
) @@ -15,7 +15,15 @@ const FrameDecorator = story => ( storiesOf('Components', module) .addDecorator(FrameDecorator) .add('MultisigForm', () => ( - - { MultisigForm } - + } + onSubmit={() => {}} + steps={['Multisig TX Form', 'Review TX']} + onReset={() => {}} + > + + { MultisigForm } + + )) diff --git a/src/routes/safe/component/Withdrawn/WithdrawnForm/WithdrawnForm.stories.js b/src/routes/safe/component/Withdrawn/WithdrawnForm/WithdrawnForm.stories.js index 88ae93de..a914a0a3 100644 --- a/src/routes/safe/component/Withdrawn/WithdrawnForm/WithdrawnForm.stories.js +++ b/src/routes/safe/component/Withdrawn/WithdrawnForm/WithdrawnForm.stories.js @@ -7,15 +7,23 @@ import WithdrawnForm from './index' const FrameDecorator = story => ( -
+
{ story() }
) storiesOf('Components', module) .addDecorator(FrameDecorator) - .add('WitdrawnForm', () => ( - - { WithdrawnForm } - + .add('WithdrawnForm', () => ( + } + onSubmit={() => {}} + steps={['Fill Withdrawn Form', 'Review Withdrawn']} + onReset={() => {}} + > + + { WithdrawnForm } + + ))