import React, { Component } from 'react' import PropTypes from 'prop-types' import Button from '../../button' export default class PageContainerFooter extends Component { static propTypes = { children: PropTypes.node, onCancel: PropTypes.func, cancelText: PropTypes.string, onSubmit: PropTypes.func, submitText: PropTypes.string, disabled: PropTypes.bool, submitButtonType: PropTypes.string, } static contextTypes = { t: PropTypes.func, } render () { const { children, onCancel, cancelText, onSubmit, submitText, disabled, submitButtonType, } = this.props return (
{children && ( )}
) } }