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