import React from 'react';
import { storiesOf } from '@storybook/react';
import { checkA11y } from 'storybook-addon-a11y';

import ShopifyProfile from './index';

storiesOf('ShopifyProfile')
  .addDecorator(checkA11y)
  .add('should render', () => (
    <div style={{ width: '260px', display: 'flex' }}>
      <ShopifyProfile
        profile={{
          username: 'Woodland Escape',
        }}
      />
    </div>
  ));
