import React, {Component} from 'react' import Button from 'material-ui/Button' import Dialog, { DialogTitle, DialogContent, DialogContentText, DialogActions } from 'material-ui/Dialog' import Typography from 'material-ui/Typography' import App from '../components/App' const styles = { container: { textAlign: 'center', paddingTop: 200 } } class Index extends Component { constructor (props) { super(props) this.state = { open: false } } handleRequestClose = () => { this.setState({ open: false }) }; handleClick = () => { this.setState({ open: true }) }; render () { return (
Super Secret Password 1-2-3-4-5 Material-UI example project
) } } export default Index