2017-05-30 20:36:52 +00:00
|
|
|
import React from 'react';
|
2017-09-25 02:06:28 +00:00
|
|
|
import translate from 'translations';
|
2017-10-04 04:13:49 +00:00
|
|
|
import TabSection from 'containers/TabSection';
|
2017-12-06 23:04:57 +00:00
|
|
|
import { knowledgeBaseURL } from 'config/data';
|
2017-08-28 18:05:38 +00:00
|
|
|
|
2017-09-29 02:09:01 +00:00
|
|
|
const Help = () => (
|
2017-10-04 04:13:49 +00:00
|
|
|
<TabSection>
|
2017-09-29 02:09:01 +00:00
|
|
|
<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"
|
|
|
|
>
|
2017-12-06 23:04:57 +00:00
|
|
|
<span className="text-danger">{translate('HELP_Warning')}</span>
|
2017-09-29 02:09:01 +00:00
|
|
|
</a>
|
|
|
|
</h3>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h3>
|
2017-12-06 23:04:57 +00:00
|
|
|
This page is deprecated. Please check out our more up-to-date and searchable{' '}
|
|
|
|
<a href={knowledgeBaseURL} target="_blank">
|
2017-09-29 02:09:01 +00:00
|
|
|
Knowledge Base.{' '}
|
|
|
|
</a>
|
|
|
|
</h3>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</article>
|
2017-07-04 03:28:56 +00:00
|
|
|
</article>
|
2017-09-29 02:09:01 +00:00
|
|
|
</div>
|
|
|
|
</section>
|
2017-10-04 04:13:49 +00:00
|
|
|
</TabSection>
|
2017-09-29 02:09:01 +00:00
|
|
|
);
|
2017-05-24 02:23:33 +00:00
|
|
|
|
2017-07-04 03:28:56 +00:00
|
|
|
export default Help;
|