Last active
February 15, 2018 21:38
-
-
Save agnanachandran/33f87c01185dd2ca59aff5512b68b8e2 to your computer and use it in GitHub Desktop.
Revisions
-
agnanachandran revised this gist
Feb 15, 2018 . 1 changed file with 0 additions and 4 deletions.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 @@ -1,14 +1,10 @@ class RootStore { notificationsStore: NotificationsStore; initialize(): void { // Retrieve initial state of notifications const notifications: Notification[] = ... this.notificationsStore = NotificationsStore.initialize(notifications); } } -
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,14 @@ class RootStore { ... notificationsStore: NotificationsStore; ... initialize(): void { // Retrieve initial state of notifications const notifications: Notification[] = ... // Initialize stores this.notificationsStore = NotificationsStore.initialize(notifications); ... } }