mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 11:34:26 +00:00
make help a stateless component
This commit is contained in:
parent
c6b172562a
commit
37f611ef91
@ -1,34 +1,27 @@
|
||||
import React, {Component} from "react";
|
||||
import React from "react";
|
||||
|
||||
export default class Help extends Component {
|
||||
constructor(props) {
|
||||
super(props)
|
||||
}
|
||||
const Help = () => (
|
||||
<section className="container" style={{minHeight: '50%'}}>
|
||||
<div className="tab-content">
|
||||
<article className="tab-pane help active">
|
||||
<h1 translate="NAV_Help">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">If you created a wallet -or- downloaded the repo before <strong>Dec. 31st, 2015</strong>, please check your wallets &
|
||||
download a new version of the repo. Click for details.</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>
|
||||
);
|
||||
|
||||
render() {
|
||||
return (
|
||||
<section className="container" style={{minHeight: '50%'}}>
|
||||
<div className="tab-content">
|
||||
|
||||
<article className="tab-pane help active">
|
||||
<h1 translate="NAV_Help">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">If you created a wallet -or- downloaded the repo before <strong>Dec. 31st, 2015</strong>, please check your wallets &
|
||||
download a new version of the repo. Click for details.</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>
|
||||
);
|
||||
}
|
||||
}
|
||||
export default Help
|
||||
|
Loading…
x
Reference in New Issue
Block a user