mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 11:28:51 +01:00
17 lines
379 B
JavaScript
17 lines
379 B
JavaScript
|
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';
|