import React from 'react' import { action } from '@storybook/addon-actions' import { text } from '@storybook/addon-knobs/react' import FeeCard from './fee-card' const containerStyle = { width: '300px', } export default { title: 'FeeCard', } export const WithSecondRow = () => { return (
) } export const WithoutSecondRow = () => { return (
) }