mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-20 20:08:07 -05:00
16 lines
380 B
JavaScript
16 lines
380 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
|
|
import Dialog from '@material-ui/core/Dialog';
|
|
import withMobileDialog from '@material-ui/core/withMobileDialog';
|
|
|
|
const ResponsiveDialog = (props) => {
|
|
return <Dialog {...props}/>;
|
|
};
|
|
|
|
ResponsiveDialog.propTypes = {
|
|
fullScreen: PropTypes.bool.isRequired
|
|
};
|
|
|
|
export default withMobileDialog()(ResponsiveDialog);
|