materialuiupgraded
Version:
Material-UI's workspace package
31 lines (29 loc) • 1.01 kB
JavaScript
import React from 'react';
import DialogActions from '@material-ui/core/DialogActions';
import DialogContent from '@material-ui/core/DialogContent';
import DialogContentText from '@material-ui/core/DialogContentText';
import DialogTitle from '@material-ui/core/DialogTitle';
import Paper from '@material-ui/core/Paper';
import Button from '@material-ui/core/Button';
export default function AlertDialog() {
return (
<Paper
elevation={8}
style={{
width: 300,
}}
>
<DialogTitle>{"Use Google's location service?"}</DialogTitle>
<DialogContent>
<DialogContentText>
Let Google help apps determine location. This means sending anonymous location data to
Google, even when no apps are running.
</DialogContentText>
</DialogContent>
<DialogActions>
<Button color="primary">Disagree</Button>
<Button color="primary">Agree</Button>
</DialogActions>
</Paper>
);
}