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