2022-02-25 23:59:43 +00:00
|
|
|
// Copyright 2020-2022 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-06-26 00:08:58 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { Store } from 'redux';
|
2020-06-26 00:08:58 +00:00
|
|
|
|
|
|
|
import { SmartSafetyNumberViewer } from '../smart/SafetyNumberViewer';
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
contactID: string;
|
|
|
|
onClose?: () => void;
|
|
|
|
};
|
|
|
|
|
2020-09-14 21:56:35 +00:00
|
|
|
export const createSafetyNumberViewer = (
|
|
|
|
store: Store,
|
|
|
|
props: Props
|
|
|
|
): React.ReactElement => (
|
2020-06-26 00:08:58 +00:00
|
|
|
<Provider store={store}>
|
2022-02-25 23:59:43 +00:00
|
|
|
<SmartSafetyNumberViewer {...props} />
|
2020-06-26 00:08:58 +00:00
|
|
|
</Provider>
|
|
|
|
);
|