// @flow import React from 'react'; import { Dialog } from '../../../base/dialog'; import Header from './ChatDialogHeader'; type Props = { /** * Children of the component. */ children: React$Node } /** * Component that renders the content of the chat in a modal. * * @returns {React$Element} */ function ChatDialog({ children }: Props) { return (
{children}
); } export default ChatDialog;