signal-desktop/ts/state/roots/createStickerPreviewModal.tsx
Ken Powers 29de50c12a Stickers
Co-authored-by: scott@signal.org
Co-authored-by: ken@signal.org
2019-05-16 16:10:37 -07:00

16 lines
570 B
TypeScript

import React from 'react';
import { Provider } from 'react-redux';
import { Store } from 'redux';
import { SmartStickerPreviewModal } from '../smart/StickerPreviewModal';
// Workaround: A react component's required properties are filtering up through connect()
// https://github.com/DefinitelyTyped/DefinitelyTyped/issues/31363
const FilteredStickerPreviewModal = SmartStickerPreviewModal as any;
export const createStickerPreviewModal = (store: Store, props: Object) => (
<Provider store={store}>
<FilteredStickerPreviewModal {...props} />
</Provider>
);