UNPKG

@jeremyckahn/farmhand

Version:
15 lines (13 loc) 293 B
// TODO: Add tests for this reducer /** * @param {farmhand.state} state * @param {farmhand.cow} cow * @returns {farmhand.state} */ export const addCowToInventory = (state, cow) => { const { cowInventory } = state return { ...state, cowInventory: [...cowInventory, cow], } }