2017-09-15 21:38:11 +00:00
|
|
|
import React from 'react';
|
|
|
|
import './PreFooter.scss';
|
|
|
|
|
|
|
|
const PreFooter = () => {
|
|
|
|
return (
|
|
|
|
<section className="pre-footer">
|
|
|
|
<div className="container">
|
|
|
|
<p>
|
2017-12-18 23:29:26 +00:00
|
|
|
MyEtherWallet.com does not hold your keys for you. We cannot access accounts, recover
|
|
|
|
keys, reset passwords, nor reverse transactions. Protect your keys & always check that
|
|
|
|
you are on correct URL.
|
2017-09-15 21:38:11 +00:00
|
|
|
<a href="#"> You are responsible for your security.</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default PreFooter;
|