Refactor: Prepare Message function props for conversation scope

This commit is contained in:
Scott Nonnenberg 2019-03-15 15:18:00 -07:00
parent 7e58594038
commit d342b23cbc
13 changed files with 300 additions and 256 deletions

View file

@ -1,7 +1,7 @@
import React from 'react';
import classNames from 'classnames';
import { Contact } from '../../types/Contact';
import { ContactType } from '../../types/Contact';
import { LocalizerType } from '../../types/Util';
import {
@ -11,8 +11,7 @@ import {
} from './_contactUtil';
interface Props {
contact: Contact;
hasSignalAccount: boolean;
contact: ContactType;
i18n: LocalizerType;
isIncoming: boolean;
withContentAbove: boolean;