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 (
Sound {'Use location service?'} Let Google help apps determine location. This means sending anonymous location data to Google, even when no apps are running.
); } } FullScreenDialog.propTypes = { classes: PropTypes.object.isRequired, }; export default withStyles(styles)(FullScreenDialog);