import React from 'react'; import { NewTabLink } from 'components/ui'; import { discordURL } from 'config'; import './index.scss'; const LS_KEY = 'acknowledged-beta'; interface State { isFading: boolean; hasAcknowledged: boolean; } export default class BetaAgreement 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 (
You are about to use a version of MyCrypto that hasn't been released yet. While we are confident that it is close to being production ready, you may want to use the current production site for larger or more time-sensitive transactions.
Feedback and bug reports are greatly appreciated. You can file issues on our{' '}
Are you sure you would like to continue?