mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
37 lines
930 B
JavaScript
37 lines
930 B
JavaScript
|
import React from 'react';
|
||
|
import testData from '../../../../../.storybook/test-data';
|
||
|
import SignatureRequestSIWEHeader from '.';
|
||
|
|
||
|
const primaryIdentity = Object.values(testData.metamask.identities)[0];
|
||
|
const subjectMetadata = {
|
||
|
iconUrl: '/images/logo/metamask-fox.svg',
|
||
|
name: 'MetaMask',
|
||
|
origin: 'http://localhost:8080',
|
||
|
};
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/SignatureRequestSIWE/SignatureRequestSIWEHeader',
|
||
|
id: __filename,
|
||
|
argTypes: {
|
||
|
fromAccount: {
|
||
|
table: {
|
||
|
address: { control: 'text' },
|
||
|
balance: { control: 'text' },
|
||
|
name: { control: 'text' },
|
||
|
},
|
||
|
},
|
||
|
domain: { control: 'text' },
|
||
|
subjectMetadata: { control: 'object' },
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <SignatureRequestSIWEHeader {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|
||
|
|
||
|
DefaultStory.args = {
|
||
|
fromAccount: primaryIdentity,
|
||
|
domain: window.location.host,
|
||
|
subjectMetadata,
|
||
|
};
|