2017-06-29 23:03:11 +00:00
|
|
|
import React, { Component } from 'react';
|
|
|
|
import translate from 'translations';
|
2017-10-04 04:13:49 +00:00
|
|
|
import TabSection from 'containers/TabSection';
|
2017-06-29 23:03:11 +00:00
|
|
|
|
|
|
|
export default class ViewWallet extends Component {
|
2017-09-25 02:06:28 +00:00
|
|
|
public render() {
|
2017-07-04 03:21:19 +00:00
|
|
|
return (
|
2017-10-04 04:13:49 +00:00
|
|
|
<TabSection>
|
2017-09-29 02:09:01 +00: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-04 03:21:19 +00:00
|
|
|
</article>
|
2017-09-29 02:09:01 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2017-10-04 04:13:49 +00:00
|
|
|
</TabSection>
|
2017-07-04 03:21:19 +00:00
|
|
|
);
|
|
|
|
}
|
2017-06-29 23:03:11 +00:00
|
|
|
}
|