Refactor messages model; New timeline react components
This commit is contained in:
parent
d342b23cbc
commit
c41bc53614
31 changed files with 1463 additions and 3395 deletions
|
@ -21,10 +21,15 @@ interface Change {
|
|||
contacts?: Array<Contact>;
|
||||
}
|
||||
|
||||
interface Props {
|
||||
export type PropsData = {
|
||||
changes: Array<Change>;
|
||||
};
|
||||
|
||||
type PropsHousekeeping = {
|
||||
i18n: LocalizerType;
|
||||
}
|
||||
};
|
||||
|
||||
type Props = PropsData & PropsHousekeeping;
|
||||
|
||||
export class GroupNotification extends React.Component<Props> {
|
||||
public renderChange(change: Change) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue