/**
 * Conversations Screen Component.
 *
 * Full-bleed platform iframe for conversation history and analytics.
 *
 * @package Sideconvo
 */

import PlatformFrame from '../platform/PlatformFrame';

interface ConversationsProps {
	tab?: string;
}

/**
 * Conversations component.
 *
 * @return {JSX.Element} Conversations component.
 */
export default function Conversations( { tab }: ConversationsProps ) {
	return (
		<PlatformFrame
			route="conversations"
			fullBleed
			tab={ tab }
		/>
	);
}
