import React from 'react'; export default class Modal extends React.Component { constructor(props) { super(props); this.state = { modalShown: false, }; } render() { if (!this.state.modalShown) { return ''; } return ( ); }