12 lines
300 B
TypeScript
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>
|
|
);
|