import React from 'react' export const init = count => count const Action = { Increment: x => x + 1, Decrement: x => x - 1 } export const update = (action, model) => action(model) export const view = (signal, model) => (