import { Components, type ComposerProps } from 'botframework-webchat-component'; import PropTypes from 'prop-types'; import React from 'react'; import AddFullBundle, { type AddFullBundleProps } from './AddFullBundle'; const { Composer } = Components; type FullComposerProps = ComposerProps & AddFullBundleProps; const FullComposer = (props: FullComposerProps) => ( {extraProps => ( {/* We need to spread, thus, we cannot we destructuring assignment. */} {/* eslint-disable-next-line react/destructuring-assignment */} {props.children} )} ); FullComposer.defaultProps = { ...Composer.defaultProps, adaptiveCardsHostConfig: undefined, adaptiveCardsPackage: undefined, children: undefined }; FullComposer.propTypes = { ...Composer.propTypes, adaptiveCardsHostConfig: PropTypes.any, adaptiveCardsPackage: PropTypes.any, children: PropTypes.any }; export default FullComposer; export type { FullComposerProps };