import React from 'react'; import { NewTabLink } from 'components/ui'; 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@mycrypto.com {' '} if a refresh doesn't fix it (or click it anyway to open a ticket 😊). You can also submit an issue on our{' '} GitHub Repository . Please attach the following error to help our team solve your issue.

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