mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 07:16:36 +01:00
ba001b597c
* Add snap legacy authorship header * Add legacy snap header to personal_sign * Disable SIWE for snaps * Add comment
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',
|
|
};
|