mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
f7aea9dc34
* Created institutional-entity-done-page component * Added index file * Added css file and Boxes * Fixing prettier formatter * Fixed prettier format * Fixing prettier issues * Fixed prettier * Adding Text component * Removed styles and added story * Moving component to pages and improving styles --------- Co-authored-by: António Regadas <apregadas@gmail.com>
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';
|