You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
433 B
21 lines
433 B
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',
|
|
};
|
|
|