Created
July 18, 2018 03:25
-
-
Save ZackDeRose/2a7120ad500548c420b15c5df888ed5c to your computer and use it in GitHub Desktop.
New BehaviorSubjects for "Angular CDK Tables" article
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 characters
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