Conversation

A variant on UIs I'd like to try: data UI model = UI { view :: model -> DOM , update :: Δmodel -> model -> ΔDOM }
10
50
i.e. you have a view function, but also the derivative of the view function. Instead of diffing the virtual dom, you diff the model.
2
10