Migrate SafetyNumberNotification to Storybook

This commit is contained in:
Sidney Keese 2020-08-26 07:30:31 -07:00 committed by Josh Perez
parent 7b75f8bb2e
commit de72a2f6c6
3 changed files with 59 additions and 35 deletions

View file

@ -4,7 +4,7 @@ import { ContactName } from './ContactName';
import { Intl } from '../Intl';
import { LocalizerType } from '../../types/Util';
interface ContactType {
export interface ContactType {
id: string;
phoneNumber?: string;
profileName?: string;
@ -25,7 +25,7 @@ export type PropsActions = {
showIdentity: (id: string) => void;
};
type Props = PropsData & PropsHousekeeping & PropsActions;
export type Props = PropsData & PropsHousekeeping & PropsActions;
export class SafetyNumberNotification extends React.Component<Props> {
public render() {