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