1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-25 11:28:51 +01:00
metamask-extension/ui/components/institutional/custody-labels/custody-labels.stories.js

17 lines
379 B
JavaScript
Raw Normal View History

import React from 'react';
import CustodyLabels from '.';
export default {
title: 'Components/Institutional/CustodyLabels',
component: CustodyLabels,
args: {
labels: [{ key: 'testKey', value: 'value' }],
index: 'index',
hideNetwork: 'true',
},
};
export const DefaultStory = (args) => <CustodyLabels {...args} />;
DefaultStory.storyName = 'CustodyLabels';