Signal-Desktop/ts/state/roots/createShortcutGuideModal.tsx

20 lines
526 B
TypeScript

// Copyright 2019-2022 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 { ExternalProps } from '../smart/ShortcutGuideModal';
import { SmartShortcutGuideModal } from '../smart/ShortcutGuideModal';
export const createShortcutGuideModal = (
store: Store,
props: ExternalProps
): React.ReactElement => (
<Provider store={store}>
<SmartShortcutGuideModal {...props} />
</Provider>
);