1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-26 20:39:08 +01:00
metamask-extension/ui/components/institutional/note-to-trader/note-to-trader.stories.js

22 lines
501 B
JavaScript
Raw Normal View History

import React from 'react';
import NoteToTrader from '.';
export default {
title: 'Components/Institutional/NoteToTrader',
component: NoteToTrader,
args: {
placeholder:
'The approver will see this note when approving the transaction at the custodian.',
noteText: '',
labelText: 'Transaction note',
maxLength: '280',
onChange: () => {
/**/
},
},
};
export const DefaultStory = (args) => <NoteToTrader {...args} />;
DefaultStory.storyName = 'NoteToTrader';