Skip to content

Instantly share code, notes, and snippets.

@thecodinganalyst
Created June 13, 2022 01:23
Show Gist options
  • Save thecodinganalyst/477baf813ce379adbf140956ff9c10d0 to your computer and use it in GitHub Desktop.
Save thecodinganalyst/477baf813ce379adbf140956ff9c10d0 to your computer and use it in GitHub Desktop.
NgRx State Example
import {Book} from "../book";
export interface AppState {
bookStore: BookStore;
}
export interface BookStore {
books: ReadonlyArray<Book>;
selectedBook?: Book;
showDetail: boolean;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment