mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
36 lines
737 B
JavaScript
36 lines
737 B
JavaScript
|
import React from 'react';
|
||
|
import ConfirmPageContainerHeader from '.';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/ConfirmPageContainer/ConfirmPageContainerHeader',
|
||
|
id: __filename,
|
||
|
argTypes: {
|
||
|
accountAddress: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
showAccountInHeader: {
|
||
|
control: 'boolean',
|
||
|
},
|
||
|
showEdit: {
|
||
|
control: 'boolean',
|
||
|
},
|
||
|
onEdit: {
|
||
|
action: 'onEdit',
|
||
|
},
|
||
|
children: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <ConfirmPageContainerHeader {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|
||
|
|
||
|
DefaultStory.args = {
|
||
|
showEdit: false,
|
||
|
showAccountInHeader: false,
|
||
|
accountAddress: '0xB8c77482e45F1F44dE1745F52C74426C631bDD52',
|
||
|
children: 'children',
|
||
|
};
|