import React from 'react'; import { createStyles, Theme, withStyles, WithStyles } from '@material-ui/core/styles'; import Button from '@material-ui/core/Button'; import Dialog from '@material-ui/core/Dialog'; import MuiDialogTitle from '@material-ui/core/DialogTitle'; import MuiDialogContent from '@material-ui/core/DialogContent'; import MuiDialogActions from '@material-ui/core/DialogActions'; import IconButton from '@material-ui/core/IconButton'; import CloseIcon from '@material-ui/icons/Close'; import Typography from '@material-ui/core/Typography'; const styles = (theme: Theme) => createStyles({ root: { margin: 0, padding: theme.spacing(2), }, closeButton: { position: 'absolute', right: theme.spacing(1), top: theme.spacing(1), color: theme.palette.grey[500], }, }); export interface DialogTitleProps extends WithStyles { id: string; children: React.ReactNode; onClose: () => void; } const DialogTitle = withStyles(styles)((props: DialogTitleProps) => { const { children, classes, onClose, ...other } = props; return ( {children} {onClose ? ( ) : null} ); }); const DialogContent = withStyles((theme: Theme) => ({ root: { padding: theme.spacing(2), }, }))(MuiDialogContent); const DialogActions = withStyles((theme: Theme) => ({ root: { margin: 0, padding: theme.spacing(1), }, }))(MuiDialogActions); export default function CustomizedDialogs() { const [open, setOpen] = React.useState(true); const handleClose = () => { setOpen(false); }; return (
Unable to join meeting There was an issue finding that meeting. The meeting may have already ended, or your authorization may have expired.
); }