2021-01-29 21:19:24 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { Store } from 'redux';
|
2021-01-29 21:19:24 +00:00
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { SmartPendingInvitesProps } from '../smart/PendingInvites';
|
|
|
|
import { SmartPendingInvites } from '../smart/PendingInvites';
|
2021-01-29 21:19:24 +00:00
|
|
|
|
|
|
|
export const createPendingInvites = (
|
|
|
|
store: Store,
|
|
|
|
props: SmartPendingInvitesProps
|
|
|
|
): React.ReactElement => (
|
|
|
|
<Provider store={store}>
|
|
|
|
<SmartPendingInvites {...props} />
|
|
|
|
</Provider>
|
|
|
|
);
|