import React from 'react'; import { text, number } from '@storybook/addon-knobs'; import ExchangeRateDisplay from './exchange-rate-display'; export default { title: 'Pages/Swaps/ExchangeRateDisplay', id: __filename, }; export const DefaultStory = () => { return ( ); }; DefaultStory.storyName = 'Default'; export const WhiteOnBlue = () => { return (
); };