1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-11 20:27:12 +01:00
metamask-extension/ui/pages/send/send-content/send-gas-row/gas-fee-display/gas-fee-display.stories.js

23 lines
515 B
JavaScript
Raw Normal View History

2021-08-31 01:03:47 +02:00
import React from 'react';
import GasFeeDisplay from './gas-fee-display.component';
export default {
title: 'Pages/Send/SendContent/SendGasRow/GasFeeDisplay',
id: __filename,
argTypes: {
gasTotal: { control: 'number' },
gasLoadingError: { control: 'boolean' },
onReset: { action: 'OnReset' },
},
2021-08-31 01:03:47 +02:00
};
export const DefaultStory = (args) => {
return <GasFeeDisplay {...args} />;
2021-08-31 01:03:47 +02:00
};
DefaultStory.storyName = 'Default';
DefaultStory.args = {
gasTotal: 10000000000,
gasLoadingError: false,
};