// import dependencies import React from 'react'; import moment from 'moment'; import SimpleBar from 'simplebar-react'; import { Icon, Chat, Box, Paper, Dialog, DialogTitle, Stack, DialogContent, useMediaQuery } from '../'; // create menu component const DashupUIModal = (props = {}) => { // is mobile const isMobile = useMediaQuery('(max-width:800px)'); // return JSX return ( { !!props.title && ( { !!props.icon && ( ) } { props.title } { !!props.headerButtons && ( { props.headerButtons } ) } ) } { props.children } { moment(props.created || new Date()).format('Do MMM, h:mma') } { props.sidebar } ); }; // export default page menu export default DashupUIModal;