import './demo3.css'; import Message from '..'; import React from 'react'; import ReactDOM from 'react-dom'; import { Button } from '../..'; class App extends React.Component { state = { visible: true, }; handleChange = () => { this.setState({ visible: !this.state.visible, }); }; handleClose = () => { this.setState({ visible: false, }); }; render() { const { visible } = this.state; return (