import React from 'react';
import PropTypes from 'prop-types';
import { withStyles } from '@material-ui/core/styles';
import CloseIcon from '@material-ui/icons/Close';
import {
Button,
Dialog,
DialogActions,
DialogContent,
DialogContentText,
DialogTitle,
List,
ListItem,
ListItemText,
Divider,
Grid,
AppBar,
Toolbar,
IconButton,
Typography,
Slide,
} from '@material-ui/core';
const styles = {
appBar: {
position: 'relative',
},
flex: {
flex: 1,
},
};
const Transition = React.forwardRef(function Transition(props, ref) { // eslint-disable-line
return ;
});
class FullScreenDialog extends React.Component { // eslint-disable-line
state = {
open: false,
open2: false,
};
handleClickOpen = () => {
this.setState({ open: true });
};
handleClose = () => {
this.setState({ open: false });
};
handleClickOpen2 = () => {
this.setState({ open2: true });
};
handleClose2 = () => {
this.setState({ open2: false });
};
render() {
const { classes } = this.props;
return (
);
}
}
FullScreenDialog.propTypes = {
classes: PropTypes.object.isRequired,
};
export default withStyles(styles)(FullScreenDialog);