import React, { Component } from 'react';
import translate from 'translations';
import TabSection from 'containers/TabSection';
export default class ViewWallet extends Component {
public render() {
return (
<TabSection>
<section className="container">
<div className="tab-content">
<article className="tab-pane active">
<article className="collapse-container">
<div>
<h1>{translate('NAV_VIEWWALLET')}</h1>
</div>
<p>{translate('VIEWWALLET_SUBTITLE')}</p>
</article>
</section>
</TabSection>
);
}