UNPKG

@retailmenot/anchor

Version:

A React UI Library by RetailMeNot

24 lines 742 B
// REACT import * as React from 'react'; // STORYBOOK import { storiesOf } from '@storybook/react'; // VENDOR import styled, { ThemeProvider } from '@xstyled/styled-components'; // COMPONENT import { MobileCTA } from './MobileCTA.component'; // README import * as README from './README.md'; import { RootTheme } from '../../../theme'; const StyledStory = styled('div') ` padding: 10rem; `; storiesOf('Components/Layout/Footer/MobileCTA', module) .addParameters({ readme: { sidebar: README, }, }) .add('default', () => (React.createElement(ThemeProvider, { theme: RootTheme }, React.createElement(StyledStory, null, React.createElement(MobileCTA, null))))); //# sourceMappingURL=MobileCTA.stories.js.map