2017-06-30 03:03:11 +04:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import translate from 'translations';
|
2017-10-04 00:13:49 -04:00
|
|
|
import TabSection from 'containers/TabSection';
|
2017-06-30 03:03:11 +04:00
|
|
|
|
|
|
|
export default class ViewWallet extends Component {
|
2017-09-24 19:06:28 -07:00
|
|
|
public render() {
|
2017-07-03 22:21:19 -05:00
|
|
|
return (
|
2017-10-04 00:13:49 -04:00
|
|
|
<TabSection>
|
2017-09-28 22:09:01 -04:00
|
|
|
<section className="container">
|
|
|
|
<div className="tab-content">
|
|
|
|
<article className="tab-pane active">
|
|
|
|
<article className="collapse-container">
|
|
|
|
<div>
|
|
|
|
<h1>View Wallet Info</h1>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<p>{translate('VIEWWALLET_Subtitle')}</p>
|
|
|
|
</div>
|
|
|
|
</article>
|
2017-07-03 22:21:19 -05:00
|
|
|
</article>
|
2017-09-28 22:09:01 -04:00
|
|
|
</div>
|
|
|
|
</section>
|
2017-10-04 00:13:49 -04:00
|
|
|
</TabSection>
|
2017-07-03 22:21:19 -05:00
|
|
|
);
|
|
|
|
}
|
2017-06-30 03:03:11 +04:00
|
|
|
}
|