signal-desktop/ts/state/roots/createForwardMessageModal.tsx

20 lines
558 B
TypeScript
Raw Normal View History

2021-04-27 22:35:35 +00:00
// 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';
2021-04-27 22:35:35 +00:00
import type { SmartForwardMessageModalProps } from '../smart/ForwardMessageModal';
import { SmartForwardMessageModal } from '../smart/ForwardMessageModal';
2021-04-27 22:35:35 +00:00
export const createForwardMessageModal = (
store: Store,
props: SmartForwardMessageModalProps
): React.ReactElement => (
<Provider store={store}>
<SmartForwardMessageModal {...props} />
</Provider>
);