Skip to content

Instantly share code, notes, and snippets.

@FunnyGhost
Created September 12, 2019 12:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FunnyGhost/b947b35dfe3a1a862f6d473a7342a87a to your computer and use it in GitHub Desktop.
Save FunnyGhost/b947b35dfe3a1a862f6d473a7342a87a to your computer and use it in GitHub Desktop.
favorite movies service initial state
export class FavoriteMoviesService {
constructor() {}
getFavoriteMovies(): Observable<Movie[]> {
return of([]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment