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

Under Contruction

The ENS section is still under contruction

Expect unfinished components

Click to continue

); } private continue = () => { this.setState({ isFading: true }); setTimeout(() => { this.setState({ hasAcknowledged: true }); }, 1000); }; }