import React from 'react'; import './index.scss'; const SUBJECT = 'Error!'; const DESCRIPTION = 'I encountered an error while using MyCrypto. Here are the steps to re-create the issue:\n\nThe full error message:'; interface Props { error: Error; } const ErrorScreen: React.SFC = ({ error }) => { return (

Oops!

Something went really wrong, so we're showing you this red error page! 😱

Please contact{' '} support@myetherwallet.com {' '} if a refresh doesn't fix it (or click it anyway to open a ticket 😊). If you attach the following error, you'll make it a ton easier to fix the issue.

Please make sure the error message does not include any sensitive information before sending it us. We don't want your private keys!
{error.message}
); }; export default ErrorScreen;