import React from 'react'
import PropTypes from 'prop-types'
import { storiesOf } from '@storybook/react'
import { Page, Panel } from 'components/UI'
import { Content } from '../helpers'
const Wrapper = ({ children }) => (
{children}
)
Wrapper.propTypes = {
children: PropTypes.node
}
storiesOf('Layouts', module).addWithChapters('Panel', {
subtitle: 'For pages with a fixed header and footer.',
info: `Header and footer regions will always stick to the top and bottom of a panels container.`,
chapters: [
{
sections: [
{
sectionFn: () => (
Panel Header
Panel Body
Panel Footer
)
}
]
}
]
})