mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
3eefe874a8
* Revert changes made to stable permission display (UI design) * Add test for new component * Update paddings for install flow * Fix missing icons on snap installation flow * Update storybook path * Add targetSubjectMetadata param --------- Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com> Co-authored-by: Frederik Bolding <frederik.bolding@gmail.com>
25 lines
431 B
JavaScript
25 lines
431 B
JavaScript
import React from 'react';
|
|
|
|
import PermissionsConnectList from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/PermissionsConnectList',
|
|
|
|
component: PermissionsConnectList,
|
|
argTypes: {
|
|
permissions: {
|
|
control: 'object',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <PermissionsConnectList {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
DefaultStory.args = {
|
|
permissions: {
|
|
eth_accounts: {},
|
|
},
|
|
};
|