1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

gas-fee-display (#11959)

This commit is contained in:
Etienne Dusseault 2021-08-30 18:03:47 -05:00 committed by GitHub
parent 1c2d9e5c9c
commit 1a0276fc6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,19 @@
import React from 'react';
import { action } from '@storybook/addon-actions';
import { number, boolean } from '@storybook/addon-knobs';
import GasFeeDisplay from './gas-fee-display.component';
export default {
title: 'GasFeeDisplay',
};
export const GasFeeDisplayComponent = () => {
const gasTotal = number('Gas Total', 10000000000);
return (
<GasFeeDisplay
gasTotal={gasTotal}
gasLoadingError={boolean('Gas Loading Error', false)}
onReset={action('OnReset')}
/>
);
};