import classNames from 'classnames'; import Context from './Context'; import Introduction from './Introduction'; import styles from './style.less'; import type { MsgDataType } from 'supersonic-chat-sdk'; type Props = { currentEntity?: MsgDataType; }; const RightSection: React.FC = ({ currentEntity }) => { const rightSectionClass = classNames(styles.rightSection, { [styles.external]: true, }); return (
{currentEntity && (
{currentEntity?.chatContext && }
)}
); }; export default RightSection;