Update safety number change warning dialog
This commit is contained in:
parent
e87a0103cc
commit
5b83485c89
38 changed files with 1221 additions and 425 deletions
21
ts/state/roots/createSafetyNumberViewer.tsx
Normal file
21
ts/state/roots/createSafetyNumberViewer.tsx
Normal file
|
@ -0,0 +1,21 @@
|
|||
import React from 'react';
|
||||
import { Provider } from 'react-redux';
|
||||
|
||||
import { Store } from 'redux';
|
||||
|
||||
import { SmartSafetyNumberViewer } from '../smart/SafetyNumberViewer';
|
||||
|
||||
// Workaround: A react component's required properties are filtering up through connect()
|
||||
// https://github.com/DefinitelyTyped/DefinitelyTyped/issues/31363
|
||||
const FilteredSafetyNumberViewer = SmartSafetyNumberViewer as any;
|
||||
|
||||
type Props = {
|
||||
contactID: string;
|
||||
onClose?: () => void;
|
||||
};
|
||||
|
||||
export const createSafetyNumberViewer = (store: Store, props: Props) => (
|
||||
<Provider store={store}>
|
||||
<FilteredSafetyNumberViewer {...props} />
|
||||
</Provider>
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue