Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ZackDeRose/2a7120ad500548c420b15c5df888ed5c to your computer and use it in GitHub Desktop.
Save ZackDeRose/2a7120ad500548c420b15c5df888ed5c to your computer and use it in GitHub Desktop.
New BehaviorSubjects for "Angular CDK Tables" article
currentPage$ = new BehaviorSubject<number>(1);
pageSize$ = new BehaviorSubject<number>(5);
dataOnPage$ = new BehaviorSubject<any[]>([]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment