import React from 'react'; import PropTypes from 'prop-types'; import { withStyles } from '@material-ui/core/styles'; import { List, ListItem, ListItemText } from '@material-ui/core'; import ConfirmationDialog from './ConfirmationDialog'; const styles = theme => ({ root: { width: '100%', maxWidth: 360, backgroundColor: theme.palette.background.paper, }, dialog: { width: '80%', maxHeight: 435, }, }); class SelectRadioDialog extends React.Component { state = { open: false, value: 'Dione', }; button = undefined; handleClickListItem = () => { this.setState({ open: true }); }; handleClose = value => { this.setState({ value, open: false }); }; render() { const { classes } = this.props; return (
); } } SelectRadioDialog.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(SelectRadioDialog);