import React from 'react';
import {
Button,
Dialog,
DialogActions,
DialogContent,
DialogContentText,
DialogTitle,
} from '@material-ui/core';
class ScrollDialog extends React.Component {
state = {
open: false,
scroll: 'paper',
};
handleClickOpen = scroll => () => {
this.setState({ open: true, scroll });
};
handleClose = () => {
this.setState({ open: false });
};
render() {
return (
);
}
}
export default ScrollDialog;