A Metamask fork with Infura removed and default networks editable
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.
 
 
 
 
 
ciphermask/ui/components/app/flask/snaps-authorship-pill/snaps-authorship-pill.stori...

25 lines
530 B

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',
};