mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
* Creating story for account-mismatch-warning * Removed line break --------- Co-authored-by: George Marshall <george.marshall@consensys.net>
20 lines
469 B
JavaScript
20 lines
469 B
JavaScript
import React from 'react';
|
|
import AccountMismatchWarning from './account-mismatch-warning.component';
|
|
|
|
export default {
|
|
title: 'Components/UI/AccountMismatchWarning',
|
|
component: AccountMismatchWarning,
|
|
argTypes: {
|
|
address: {
|
|
control: 'text',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <AccountMismatchWarning {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
DefaultStory.args = {
|
|
address: '0x5CfE73b6021E818B776b421B1c4Db2474086a7e1',
|
|
};
|