import React from 'react' class StageLayout extends React.Component { static get defaultProps() {return{ title: 'untitled', subtitle: null, buttons: null }} constructor(props) { super(props) } render() { let subtitle = null if (this.props.subtitle) { subtitle = {this.props.subtitle} } return(
{this.props.title} {subtitle}
{this.props.children}
{this.props.buttons}
) } } export default StageLayout