embark/embark-ui/src/components/Account.js

20 lines
377 B
JavaScript
Raw Normal View History

2018-08-03 15:51:15 +00:00
import React from 'react';
2018-10-15 10:08:57 +00:00
import {Row, Col} from 'reactstrap';
2018-08-03 15:51:15 +00:00
import PropTypes from 'prop-types';
const Account = ({account}) => (
2018-10-15 10:08:57 +00:00
<Row>
<Col>
<h1>{account.address}</h1>
<p>Balance: {account.balance}</p>
<p>Tx count: {account.transactionCount}</p>
</Col>
</Row>
2018-08-03 15:51:15 +00:00
);
Account.propTypes = {
account: PropTypes.object
};
export default Account;