Files
Signal-Desktop/ts/state/roots/createChatColorPicker.tsx
2021-10-26 14:15:33 -05:00

20 lines
530 B
TypeScript

// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { Provider } from 'react-redux';
import type { Store } from 'redux';
import type { SmartChatColorPickerProps } from '../smart/ChatColorPicker';
import { SmartChatColorPicker } from '../smart/ChatColorPicker';
export const createChatColorPicker = (
store: Store,
props: SmartChatColorPickerProps
): React.ReactElement => (
<Provider store={store}>
<SmartChatColorPicker {...props} />
</Provider>
);