You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/js/components/wallet/SignVerify.js

44 lines
1.2 KiB

/* @flow */
'use strict';
import React from 'react';
import { bindActionCreators } from 'redux';
import { connect } from 'react-redux';
const SignVerify = (props: any): any => {
return (
<section className="signverify">
<div className="sign">
<h2>Sign message</h2>
<label>Message</label>
<textarea rows="4" maxLength="255"></textarea>
<label>Address</label>
<input type="text" />
<label>Signature</label>
<textarea rows="4" maxLength="255" readOnly="readonly"></textarea>
</div>
<div className="verify">
<h2>Verify message</h2>
<label>Message</label>
<textarea rows="4" maxLength="255"></textarea>
<label>Address</label>
<input type="text" />
<label>Signature</label>
<textarea rows="4" maxLength="255"></textarea>
</div>
</section>
);
}
const mapStateToProps = (state, own) => {
return {
};
}
const mapDispatchToProps = (dispatch) => {
return {
};
}
export default connect(mapStateToProps, mapDispatchToProps)(SignVerify);