Created
February 15, 2018 21:44
-
-
Save agnanachandran/205da8d043394940c85f3071d8b3553e to your computer and use it in GitHub Desktop.
Revisions
-
agnanachandran created this gist
Feb 15, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ interface NotificationsViewContainerProps { notificationsStore: NotificationsStore; } @observer class NotificationsViewContainer extends React.Component<NotificationsViewContainerProps, {}> { render(): JSX.Element { return ( <NotificationsView readNotifications={ this.props.notificationsStore.readNotifications } unreadNotifications={ this.props.notificationsStore.unreadNotifications } onMarkAsRead={ this.props.notificationsStore.markNotificationAsRead } /> ); } }