mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-18 23:22:07 +00:00
6f7e3c27e2
* Fix location query * Remove unnecessary polyfill * Fix tslint error & update history types * Parse search str using Node Query String * Revert "Parse search str using Node Query String" This reverts commit 0a482dabf29c3fbcbfd3112b974d6b98c14dca2e. * fix formatting * Add query-string * Rename App container to TabSection & pass it location prop * Add react-router withRouter HOC to NavigationLink * various adjustments/finalizations * Add location to props interface
27 lines
729 B
TypeScript
27 lines
729 B
TypeScript
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>View Wallet Info</h1>
|
|
</div>
|
|
<div>
|
|
<p>{translate('VIEWWALLET_Subtitle')}</p>
|
|
</div>
|
|
</article>
|
|
</article>
|
|
</div>
|
|
</section>
|
|
</TabSection>
|
|
);
|
|
}
|
|
}
|