mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 15:50:28 +01:00
4179ce634c
* Create new snap authorship component * Add icons and fix overflow issues * Add empty state + more fixes * Fix overflow * Move some code to SnapAvatar * Fix lint * Change component name * Delete forgotten file
22 lines
396 B
JavaScript
22 lines
396 B
JavaScript
import React from 'react';
|
|
import SnapAuthorship from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/Flask/SnapAuthorship',
|
|
|
|
component: SnapAuthorship,
|
|
argTypes: {
|
|
snapId: {
|
|
control: 'text',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <SnapAuthorship {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
DefaultStory.args = {
|
|
snapId: 'npm:@metamask/test-snap-bip44',
|
|
};
|