import React from 'react'; import { States } from '../../utilities'; import { PromoBanner, PromoBannerProps } from './PromoBanner'; export default { title: 'Components/PromoBanner' }; export const Default = () => ( states={[ { children: Center }, { children: [Left, Right] }, { children: [ Left, Center, Right ] }, { children: [ Currency: USA (USD $), Order by Dec. 12 for delivery by Dec. 25 — LEARN MORE , Hi, Friend ] } ]} > {props => } ); export const Mobile = () => ( > Currency: USA (USD $) Order by Dec. 12 for delivery by Dec. 25 — LEARN MORE Hi, Friend ); Mobile.story = { parameters: { viewport: { defaultViewport: 'xs' } } };