import React from 'react'; import PropTypes from 'prop-types'; const Dialog = ({ children }) => { return
{children}
; }; Dialog.propTypes = { children: PropTypes.node, }; export default Dialog;