react-code-dataset
/
react-material-dashboard
/src
/components
/dashboard
/settings
/notifications.tsx
| 'use client'; | |
| import * as React from 'react'; | |
| import Button from '@mui/material/Button'; | |
| import Card from '@mui/material/Card'; | |
| import CardActions from '@mui/material/CardActions'; | |
| import CardContent from '@mui/material/CardContent'; | |
| import CardHeader from '@mui/material/CardHeader'; | |
| import Checkbox from '@mui/material/Checkbox'; | |
| import Divider from '@mui/material/Divider'; | |
| import FormControlLabel from '@mui/material/FormControlLabel'; | |
| import FormGroup from '@mui/material/FormGroup'; | |
| import Grid from '@mui/material/Grid'; | |
| import Stack from '@mui/material/Stack'; | |
| import Typography from '@mui/material/Typography'; | |
| export function Notifications(): React.JSX.Element { | |
| return ( | |
| <form | |
| onSubmit={(event) => { | |
| event.preventDefault(); | |
| }} | |
| > | |
| <Card> | |
| <CardHeader subheader="Manage the notifications" title="Notifications" /> | |
| <Divider /> | |
| <CardContent> | |
| <Grid container spacing={6} wrap="wrap"> | |
| <Grid | |
| size={{ | |
| md: 4, | |
| sm: 6, | |
| xs: 12, | |
| }} | |
| > | |
| <Stack spacing={1}> | |
| <Typography variant="h6">Email</Typography> | |
| <FormGroup> | |
| <FormControlLabel control={<Checkbox defaultChecked />} label="Product updates" /> | |
| <FormControlLabel control={<Checkbox />} label="Security updates" /> | |
| </FormGroup> | |
| </Stack> | |
| </Grid> | |
| <Grid | |
| size={{ | |
| md: 4, | |
| sm: 6, | |
| xs: 12, | |
| }} | |
| > | |
| <Stack spacing={1}> | |
| <Typography variant="h6">Phone</Typography> | |
| <FormGroup> | |
| <FormControlLabel control={<Checkbox defaultChecked />} label="Email" /> | |
| <FormControlLabel control={<Checkbox />} label="Security updates" /> | |
| </FormGroup> | |
| </Stack> | |
| </Grid> | |
| </Grid> | |
| </CardContent> | |
| <Divider /> | |
| <CardActions sx={{ justifyContent: 'flex-end' }}> | |
| <Button variant="contained">Save changes</Button> | |
| </CardActions> | |
| </Card> | |
| </form> | |
| ); | |
| } | |