import React from 'react'; import { Provider } from 'react-redux'; import { action } from '@storybook/addon-actions'; import { boolean } from '@storybook/addon-knobs'; import { decGWEIToHexWEI } from '../../../helpers/utils/conversions.util'; import configureStore from '../../../store/store'; import testData from '../../../../.storybook/test-data'; import { EDIT_GAS_MODES, GAS_RECOMMENDATIONS, } from '../../../../shared/constants/gas'; import EditGasPopover from '.'; const store = configureStore(testData); export default { title: 'Edit Gas Display Popover', decorators: [(story) => {story()}], id: __filename, }; export const Basic = () => { return (
action(`Close Edit Gas Popover`)()} minimumGasLimit="5700" />
); }; export const BasicWithDifferentButtonText = () => { return (
action(`Close Edit Gas Popover`)()} minimumGasLimit="5700" />
); }; export const EducationalContentFlow = () => { return (
action(`Close Edit Gas Popover`)()} minimumGasLimit="5700" />
); };