narrowLayout.stories.js 320 B

12345678910
  1. import React from 'react';
  2. import {storiesOf} from '@storybook/react';
  3. import {withInfo} from '@storybook/addon-info';
  4. import NarrowLayout from 'app/components/narrowLayout';
  5. storiesOf('UI|NarrowLayout', module).add(
  6. 'NarrowLayout',
  7. withInfo('A narrow layout')(() => <NarrowLayout>Narrow Layout</NarrowLayout>)
  8. );