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, hideCancel: PropTypes.func, } static contextTypes = { t: PropTypes.func, } render () { const { children, onCancel, cancelText, onSubmit, submitText, disabled, submitButtonType, hideCancel, } = this.props return (
{!hideCancel && }
{children && ( )}
) } }