import React from 'react' import { storiesOf } from '@storybook/react' import { Page, MainContent, Sidebar } from 'components/UI' import { Content } from '../helpers' storiesOf('Layouts', module).addWithChapters('Page', { subtitle: 'The outer most application wrapper.', info: `Pages can have optional sidebars on the left or right.`, chapters: [ { sections: [ { title: 'Page with small left sidebar', sectionFn: () => ( Sidebar MainContent ) }, { title: 'Page with large right sidebar', sectionFn: () => ( MainContent Sidebar ) } ] } ] })