mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-15 13:44:29 +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
48 lines
1.5 KiB
TypeScript
48 lines
1.5 KiB
TypeScript
import React from 'react';
|
|
import translate from 'translations';
|
|
import TabSection from 'containers/TabSection';
|
|
|
|
const Help = () => (
|
|
<TabSection>
|
|
<section className="container" style={{ minHeight: '50%' }}>
|
|
<div className="tab-content">
|
|
<article className="tab-pane help active">
|
|
<h1>{translate('NAV_Help')}</h1>
|
|
<article className="collapse-container">
|
|
<div>
|
|
<ul>
|
|
<li>
|
|
<h3>
|
|
<a
|
|
href="https://www.reddit.com/r/ethereum/comments/47nkoi/psa_check_your_ethaddressorg_wallets_and_any/d0eo45o"
|
|
target="_blank"
|
|
>
|
|
<span className="text-danger">
|
|
{translate('HELP_Warning')}
|
|
</span>
|
|
</a>
|
|
</h3>
|
|
</li>
|
|
<li>
|
|
<h3>
|
|
This page is deprecated. Please check out our more
|
|
up-to-date and searchable{' '}
|
|
<a
|
|
href="https://myetherwallet.groovehq.com/help_center"
|
|
target="_blank"
|
|
>
|
|
Knowledge Base.{' '}
|
|
</a>
|
|
</h3>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</article>
|
|
</article>
|
|
</div>
|
|
</section>
|
|
</TabSection>
|
|
);
|
|
|
|
export default Help;
|