1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
2021-08-30 13:03:47 -10:00

20 lines
505 B
JavaScript

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')}
/>
);
};