import React from 'react';
import { storiesOf } from '@storybook/react-native';
import { withKnobs } from '@storybook/addon-knobs';
import Wrapper from './../../components/Wrapper';
import { Example as MinWidth } from './min-width';
import { Example as MaxHeight } from './max-height';
import { Example as Orientation } from './orientation';
storiesOf('useMediaQuery', module)
.addDecorator(withKnobs)
.addDecorator((getStory: any) => {getStory()})
.add('MinWidth', () => )
.add('MaxHeight', () => )
.add('Orientation', () => );