mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 06:34:27 +01:00
bc6c60cde1
This reverts commit4d42715220
, reversing changes made tof09ab88891
.
22 lines
433 B
JavaScript
22 lines
433 B
JavaScript
import React from 'react';
|
|
import SnapsAuthorshipPill from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/Flask/SnapsAuthorshipPill',
|
|
id: __filename,
|
|
component: SnapsAuthorshipPill,
|
|
argTypes: {
|
|
snapId: {
|
|
control: 'text',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <SnapsAuthorshipPill {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
DefaultStory.args = {
|
|
snapId: 'npm:@metamask/test-snap-bip44',
|
|
};
|