mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
18 lines
356 B
JavaScript
18 lines
356 B
JavaScript
|
import React from 'react';
|
||
|
import LedgerInstructionField from '.';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/LedgerInstructionField',
|
||
|
argTypes: {
|
||
|
showDataInstruction: {
|
||
|
control: {
|
||
|
type: 'boolean',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <LedgerInstructionField {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|