Skip to content

Instantly share code, notes, and snippets.

@splincode
Created April 10, 2019 17:26
Show Gist options
  • Save splincode/a6f421f1947efdf621fcf8f5ebdcfd83 to your computer and use it in GitHub Desktop.
Save splincode/a6f421f1947efdf621fcf8f5ebdcfd83 to your computer and use it in GitHub Desktop.
@State<number[]>({
name: 'todos',
defaults: [1, 2, 3]
})
export class AppState {
@Selector() public static mutableTodos(state: number[]): number[] {
return state.reverse();
}
@Selector() public static immutableTodos(state: number[]): number[] {
return [...state].reverse();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment