signal-desktop/ts/state/roots/createCallManager.tsx
2020-11-04 13:00:41 -06:00

12 lines
300 B
TypeScript

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>
);