MyCrypto/common/components/Footer/PreFooter.tsx

23 lines
612 B
TypeScript
Raw Normal View History

import React from 'react';
import './PreFooter.scss';
2018-02-10 10:56:05 -08:00
interface Props {
openModal(): void;
}
const PreFooter: React.SFC<Props> = ({ openModal }) => {
return (
<section className="pre-footer">
<div className="container">
<p>
MyCrypto.com does not hold your keys for you. We cannot access accounts, recover keys,
2018-02-10 10:56:05 -08:00
reset passwords, nor reverse transactions. Protect your keys & always check that you are
on correct URL. <a onClick={openModal}>You are responsible for your security.</a>
</p>
</div>
</section>
);
};
export default PreFooter;