c0510b08a5
Co-authored-by: Chris Svenningsen <chris@carbonfive.com> Co-authored-by: Sidney Keese <me@sidke.com>
21 lines
476 B
TypeScript
21 lines
476 B
TypeScript
// Copyright 2020 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import React from 'react';
|
|
import { Provider } from 'react-redux';
|
|
|
|
import { Store } from 'redux';
|
|
|
|
import {
|
|
SmartPendingInvites,
|
|
SmartPendingInvitesProps,
|
|
} from '../smart/PendingInvites';
|
|
|
|
export const createPendingInvites = (
|
|
store: Store,
|
|
props: SmartPendingInvitesProps
|
|
): React.ReactElement => (
|
|
<Provider store={store}>
|
|
<SmartPendingInvites {...props} />
|
|
</Provider>
|
|
);
|