import * as React from 'react'; import { storiesOf } from '@storybook/react'; import styled from 'styled-components'; import { Input, GlobalStyle } from '../src'; const Wrapper = styled.div` margin: 20px; padding: 90px; background-color: white; border: #ebebeb 1px solid; `; storiesOf('Inputs', module) .add('Default', () => ( )) .add('password', () => ( )) .add('disabled', () => ( )) .add('isInvalid', () => ( )) .add('isWarning', () => ( ));