mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 13:47:06 +01:00
22 lines
474 B
JavaScript
22 lines
474 B
JavaScript
|
import React from 'react';
|
||
|
import SnapLegacyAuthorshipHeader from './snap-legacy-authorship-header';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/Snaps/SnapLegacyAuthorshipHeader',
|
||
|
|
||
|
component: SnapLegacyAuthorshipHeader,
|
||
|
argTypes: {
|
||
|
snapId: {
|
||
|
control: 'text',
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <SnapLegacyAuthorshipHeader {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|
||
|
|
||
|
DefaultStory.args = {
|
||
|
snapId: 'npm:@metamask/test-snap-bip44',
|
||
|
};
|