Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created December 28, 2019 18:46
Embed
What would you like to do?
const gameReducer = createReducer(GameSimulator.buildDefaultState(),
on(resetAction, () => GameSimulator.buildDefaultState()),
on(nextTurnAction, state => GameSimulator.simulate(state, 1)),
on(clearAction, state => { ... state, messages: [] })
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment