mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-12 04:37:13 +01:00
854fc71ae7
* Organizing storybook to echo app folder structure * Updating new stories to follow new convention from develop
23 lines
584 B
JavaScript
23 lines
584 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: 'Pages/Send/SendContent/SendGasRow/GasFeeDisplay',
|
|
id: __filename,
|
|
};
|
|
|
|
export const DefaultStory = () => {
|
|
const gasTotal = number('Gas Total', 10000000000);
|
|
return (
|
|
<GasFeeDisplay
|
|
gasTotal={gasTotal}
|
|
gasLoadingError={boolean('Gas Loading Error', false)}
|
|
onReset={action('OnReset')}
|
|
/>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|