import React from 'react' import { action } from '@storybook/addon-actions' import { text, boolean, number, object } from '@storybook/addon-knobs/react' import FeeCard from './fee-card' const tokenApprovalTextComponent = ( ABC ) const containerStyle = { width: '300px', } export default { title: 'FeeCard', } export const WithAllProps = () => { return (
) } export const WithoutThirdRow = () => { return (
) } export const WithOnlyRequiredProps = () => { return (
) }