/// import { Cell, pattern, action } from "commontools"; interface State { count: Cell; } export default pattern(({ count }) => { return { inc: action(() => count.set(count.get() + 1)), }; });