1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-02 06:07:06 +01:00
metamask-extension/ui/components/app/custom-spending-cap/custom-spending-cap.stories.js
Adnan Sahovic f5c95860f7 Display large and small numbers as decimals instead of scientific notation on token allowance confirmation screens (#16676)
Co-authored-by: VSaric <vladimir.saric@consensys.net>
Co-authored-by: Vladimir Saric <92527393+VSaric@users.noreply.github.com>
2023-01-10 23:03:57 +00:00

41 lines
816 B
JavaScript

import React from 'react';
import CustomSpendingCap from './custom-spending-cap';
export default {
title: 'Components/App/CustomSpendingCap',
id: __filename,
argTypes: {
tokenName: {
control: { type: 'text' },
},
currentTokenBalance: {
control: { type: 'number' },
},
dappProposedValue: {
control: { type: 'text' },
},
siteOrigin: {
control: { type: 'text' },
},
passTheErrorText: {
action: 'passTheErrorText',
},
decimals: {
control: 'text',
},
},
args: {
tokenName: 'DAI',
currentTokenBalance: 200.12,
dappProposedValue: '7',
siteOrigin: 'Uniswap.org',
decimals: '4',
},
};
export const DefaultStory = (args) => {
return <CustomSpendingCap {...args} />;
};
DefaultStory.storyName = 'Default';