import React from 'react'; import Button from '@material-ui/core/Button'; import Dialog from '@material-ui/core/Dialog'; 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, { PaperProps } from '@material-ui/core/Paper'; import Draggable from 'react-draggable'; function PaperComponent(props: PaperProps) { return ( ); } export default function DraggableDialog() { const [open, setOpen] = React.useState(false); const handleClickOpen = () => { setOpen(true); }; const handleClose = () => { setOpen(false); }; return (
Subscribe To subscribe to this website, please enter your email address here. We will send updates occasionally.
); }