mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-04 15:14:29 +01:00
925a19fa4a
This reverts commitf09ab88891
, reversing changes made toeffc761e0e
. This is being temporarily reverted to make it easier to release an urgent fix for v10.15.1.
26 lines
530 B
JavaScript
26 lines
530 B
JavaScript
import React from 'react';
|
|
import SnapsAuthorshipPill from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/Flask/SnapsAuthorshipPill',
|
|
id: __filename,
|
|
component: SnapsAuthorshipPill,
|
|
argTypes: {
|
|
packageName: {
|
|
control: 'text',
|
|
},
|
|
url: {
|
|
control: 'text',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <SnapsAuthorshipPill {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
DefaultStory.args = {
|
|
packageName: 'npm-package-name',
|
|
url: 'https://www.npmjs.com/package/@airswap/protocols',
|
|
};
|