mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
23 lines
539 B
JavaScript
23 lines
539 B
JavaScript
|
import React from 'react';
|
||
|
import PermissionCell from '.';
|
||
|
|
||
|
export default {
|
||
|
title: 'Components/App/PermissionCell',
|
||
|
|
||
|
component: PermissionCell,
|
||
|
};
|
||
|
|
||
|
export const DefaultStory = (args) => <PermissionCell {...args} />;
|
||
|
|
||
|
DefaultStory.storyName = 'Default';
|
||
|
|
||
|
DefaultStory.args = {
|
||
|
title: 'Access the Ethereum provider.',
|
||
|
description:
|
||
|
'Allow the snap to communicate with MetaMask direct…blockchain and suggest messages and transactions.',
|
||
|
weight: 1,
|
||
|
avatarIcon: 'ethereum',
|
||
|
dateApproved: 1680185432326,
|
||
|
revoked: false,
|
||
|
};
|