UNPKG

wix-style-react

Version:
14 lines (10 loc) 480 B
import React from 'react'; import { storiesOf } from '@storybook/react'; import { getTestStoryKind } from '../../../stories/storiesHierarchy'; import { storySettings } from './storySettings'; import GooglePreview from '..'; const TestStories = storiesOf(getTestStoryKind(storySettings), module); const { testStoryNames, dataHook } = storySettings; TestStories.add(testStoryNames.DEFAULT, () => ( <GooglePreview dataHook={dataHook} buttonText="Press me for a surprise" /> ));