import React from 'react' import PropTypes from 'prop-types' import Block from '../block' import Heading from '../heading' import Button from '../button' import Text from '../text' class PanelLayout extends React.PureComponent { render() { const { title, subtitle, headerButtonTitle, headerButtonAction, headerButtonTo, footerButtonTitle, footerButtonAction, footerButtonTo, footerButtonHref, noPadding, children, } = this.props return ( ) } } PanelLayout.propTypes = { title: PropTypes.string, subtitle: PropTypes.string, children: PropTypes.node, headerButtonTitle: PropTypes.string, headerButtonAction: PropTypes.func, headerButtonTo: PropTypes.string, footerButtonTitle: PropTypes.string, footerButtonAction: PropTypes.func, footerButtonTo: PropTypes.string, footerButtonHref: PropTypes.string, noPadding: PropTypes.bool, } export default PanelLayout