narrowLayout.stories.js 348 B

12345678910111213141516
  1. import React from 'react';
  2. import {withInfo} from '@storybook/addon-info';
  3. import NarrowLayout from 'app/components/narrowLayout';
  4. export default {
  5. title: 'UI/NarrowLayout',
  6. };
  7. export const _NarrowLayout = withInfo('A narrow layout')(() => (
  8. <NarrowLayout>Narrow Layout</NarrowLayout>
  9. ));
  10. _NarrowLayout.story = {
  11. name: 'NarrowLayout',
  12. };