import classNames from 'classnames/bind' export default class PanelLayout extends PureComponent { static propTypes = { title: PropTypes.string, subtitle: PropTypes.string, children: PropTypes.node, hasBackground: PropTypes.boolean, button: PropTypes.node, } render() { const { title, subtitle, button, hasBackground, children } = this.props return ( ) } }