UNPKG

@eaze/disclaimer

Version:

React components:

20 lines (16 loc) 528 B
import { storiesOf } from '@storybook/react' import React from 'react' import Disclaimer from '../src/' import styled from 'react-emotion' const dislcaimerStory = storiesOf('Disclaimer', module) dislcaimerStory.add('default', () => ( <Center> <Disclaimer> Your card will be temporarily authorized by https://jackhanford.com for $15.00. Your statement will reflect the final charge within 7 business days of your order. </Disclaimer> </Center> )) const Center = styled.div` width: 50%; margin: 0 auto; `