import * as React from 'react'; import withMobileDialog, { WithMobileDialog } from '@material-ui/core/withMobileDialog'; interface SimpleProps extends WithMobileDialog { note: string; title: string; } function Component(props: SimpleProps) { const { fullScreen, note, title } = props; return (