mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
43 lines
843 B
JavaScript
43 lines
843 B
JavaScript
|
/* eslint-disable react/prop-types */
|
||
|
import React from 'react';
|
||
|
import SetApproveForAllWarning from '.';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/SetApproveForAllWarning',
|
||
|
id: __filename,
|
||
|
argTypes: {
|
||
|
collectionName: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
name: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
senderAddress: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
total: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
isERC721: {
|
||
|
control: 'boolean',
|
||
|
},
|
||
|
onSubmit: {
|
||
|
action: 'onSubmit',
|
||
|
},
|
||
|
onCancel: {
|
||
|
action: 'onCancel',
|
||
|
},
|
||
|
},
|
||
|
args: {
|
||
|
collectionName: 'Test collection',
|
||
|
name: 'Account 1',
|
||
|
senderAddress: '0xee014609ef9e09776ac5fe00bdbfef57bcdefebb',
|
||
|
total: '6',
|
||
|
isERC721: true,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <SetApproveForAllWarning {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|