1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-24 02:58:09 +01:00
metamask-extension/ui/app/components/page-container/page-container-footer.component.js

42 lines
883 B
JavaScript

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 (
<div className="page-container__footer">
<button
className="btn-secondary--lg page-container__footer-button"
onClick={() => onCancel()}
>
{this.context.t('cancel')}
</button>
<button
className="btn-primary--lg page-container__footer-button"
disabled={disabled}
onClick={(e) => onSubmit(e)}
>
{this.context.t('next')}
</button>
</div>
)
}
}
PageContainerFooter.contextTypes = {
t: PropTypes.func,
}