Introduce conversation details screen for New Groups
Co-authored-by: Chris Svenningsen <chris@carbonfive.com> Co-authored-by: Sidney Keese <me@sidke.com>
This commit is contained in:
parent
1268945840
commit
c0510b08a5
64 changed files with 4699 additions and 81 deletions
21
ts/state/roots/createPendingInvites.tsx
Normal file
21
ts/state/roots/createPendingInvites.tsx
Normal file
|
@ -0,0 +1,21 @@
|
|||
// 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>
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue