import React from 'react'; import './index.scss'; const LS_KEY = 'acknowledged-alpha'; interface State { isFading: boolean; hasAcknowledged: boolean; } export default class AlphaAgreement extends React.PureComponent<{}, State> { public state = { hasAcknowledged: !!localStorage.getItem(LS_KEY), isFading: false }; public render() { if (this.state.hasAcknowledged) { return null; } const isFading = this.state.isFading ? 'is-fading' : ''; return (

This is an Unstable Version of MyCrypto

You are about to access an alpha version of MyCrypto that is currently in development. In its current state, it should only be used for testing, not for important transactions.

Any wallets you generate should not hold a significant value, and any transactions you make should be for small amounts. MyCrypto does not claim responsibility for any issues that happen while using the alpha version.

Are you sure you would like to continue?

); } private doContinue = () => { localStorage.setItem(LS_KEY, 'true'); this.setState({ isFading: true }); setTimeout(() => { this.setState({ hasAcknowledged: true }); }, 1000); }; private reject = () => { window.location.assign('https://mycrypto.com'); }; }