import React from "react"; import { Modal } from "modal/modal"; class ModalInsufficientBalance extends React.PureComponent { render() { const { addBalance, closeModal } = this.props; return ( {__( "Insufficient balance: after this transaction you would have less than 0 LBCs in your wallet." )} ); } } export default ModalInsufficientBalance;