// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import React from 'react'; import { Provider } from 'react-redux'; import type { Store } from 'redux'; import type { SmartForwardMessageModalProps } from '../smart/ForwardMessageModal'; import { SmartForwardMessageModal } from '../smart/ForwardMessageModal'; export const createForwardMessageModal = ( store: Store, props: SmartForwardMessageModalProps ): React.ReactElement => ( );