import React from 'react' import { storiesOf } from '@storybook/react' import { Page, MainContent, Sidebar } from 'components/UI' storiesOf('Components.Layouts', module) .add('MainContent', () => Main content) .add('Sidebar', () => Sidebar) .add('Page', () => Page) .add('Page - sidebar left', () => ( Sidebar left Main content )) .add('Page - sidebar right', () => ( Main content Sidebar right ))