5bec6accc2
refactor modals and settings, clean-up CHANGELOG
24 lines
600 B
JavaScript
24 lines
600 B
JavaScript
import React from "react";
|
|
import { Modal } from "modal/modal";
|
|
|
|
class ModalInsufficientCredits extends React.PureComponent {
|
|
render() {
|
|
const { addFunds, closeModal } = this.props;
|
|
|
|
return (
|
|
<Modal
|
|
isOpen={true}
|
|
type="confirm"
|
|
contentLabel={__("Not enough credits")}
|
|
confirmButtonLabel={__("Get Credits")}
|
|
abortButtonLabel={__("Cancel")}
|
|
onAborted={closeModal}
|
|
onConfirmed={addFunds}
|
|
>
|
|
{__("More LBRY credits are required to purchase this.")}
|
|
</Modal>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default ModalInsufficientCredits;
|