UNPKG

viam-projectv-scan

Version:

ViaCheck deposit application

44 lines (40 loc) 1.31 kB
import React, { Component } from 'react'; import { Dialog, Pane } from 'evergreen-ui'; class AlertMessage extends Component { constructor(...props) { super(props); } render() { return ( <div> <Pane> <Dialog isShown={this.showAlertInitDevice} title="Messages colors codes" // onCloseComplete={() => // this.setState({ showAlertInitDevice: false }) // } hasCancel={false} confirmLabel="Ok" > <div>ESTO ES UNA PRUEBA</div> {/* <table width="100%" border="1px"> <thead> <tr className="backGroundOk tableWidthColumnStatus"> <td width="100%">The check was read correctly</td> </tr> <tr className="backGroundError tableWidthColumnStatus"> <td width="100%">The check isn't validated yet</td> </tr> <tr className="backGroundDuplicated tableWidthColumnStatus"> <td width="100%">The check is duplicated</td> </tr> </thead> </table> */} </Dialog> </Pane> </div> ); } } export default AlertMessage;