import React from 'react' import { storiesOf } from '@storybook/react' import Page from 'components/UI/Page' import MainContent from 'components/UI/MainContent' import Sidebar from 'components/UI/Sidebar' 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 ))