mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 23:58:06 +01:00
27 lines
611 B
JavaScript
27 lines
611 B
JavaScript
|
import React from 'react';
|
||
|
import InstitutionalEntityDonePage from '.';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/Institutional/InstitutionalEntityDonePage',
|
||
|
component: InstitutionalEntityDonePage,
|
||
|
args: {
|
||
|
history: {
|
||
|
push: () => {
|
||
|
/**/
|
||
|
},
|
||
|
},
|
||
|
mostRecentOverviewPage: 'test',
|
||
|
location: {
|
||
|
state: {
|
||
|
imgSrc: './images/logo/metamask-fox.svg',
|
||
|
title: 'title',
|
||
|
description: 'description',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <InstitutionalEntityDonePage {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'InstitutionalEntityDonePage';
|