Skip to content

Instantly share code, notes, and snippets.

@agnanachandran
Last active February 15, 2018 21:38
Show Gist options
  • Save agnanachandran/33f87c01185dd2ca59aff5512b68b8e2 to your computer and use it in GitHub Desktop.
Save agnanachandran/33f87c01185dd2ca59aff5512b68b8e2 to your computer and use it in GitHub Desktop.
stores/root_store.ts
class RootStore {
notificationsStore: NotificationsStore;
initialize(): void {
// Retrieve initial state of notifications
const notifications: Notification[] = ...
this.notificationsStore = NotificationsStore.initialize(notifications);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment