2019-05-16 22:32:11 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
|
|
|
|
import { Store } from 'redux';
|
|
|
|
|
|
|
|
import { SmartStickerManager } from '../smart/StickerManager';
|
|
|
|
|
2020-09-14 21:56:35 +00:00
|
|
|
export const createStickerManager = (store: Store): React.ReactElement => (
|
2019-05-16 22:32:11 +00:00
|
|
|
<Provider store={store}>
|
2020-10-26 21:32:46 +00:00
|
|
|
<SmartStickerManager />
|
2019-05-16 22:32:11 +00:00
|
|
|
</Provider>
|
|
|
|
);
|