Removes some Backbone views
This commit is contained in:
parent
93bc094342
commit
94d116c621
22 changed files with 160 additions and 656 deletions
|
@ -1,15 +0,0 @@
|
|||
// 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 { SmartCallManager } from '../smart/CallManager';
|
||||
|
||||
export const createCallManager = (store: Store): React.ReactElement => (
|
||||
<Provider store={store}>
|
||||
<SmartCallManager />
|
||||
</Provider>
|
||||
);
|
|
@ -1,17 +0,0 @@
|
|||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import React from 'react';
|
||||
import { Provider } from 'react-redux';
|
||||
|
||||
import { Store } from 'redux';
|
||||
|
||||
import { SmartGlobalModalContainer } from '../smart/GlobalModalContainer';
|
||||
|
||||
export const createGlobalModalContainer = (
|
||||
store: Store
|
||||
): React.ReactElement => (
|
||||
<Provider store={store}>
|
||||
<SmartGlobalModalContainer />
|
||||
</Provider>
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue