mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 20:26:24 +00:00
16 lines
383 B
TypeScript
16 lines
383 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 { SmartCallManager } from '../smart/CallManager';
|
|
|
|
export const createCallManager = (store: Store): React.ReactElement => (
|
|
<Provider store={store}>
|
|
<SmartCallManager />
|
|
</Provider>
|
|
);
|