Fixes
- Is it now possible to send a message synchronously from within connect():
function connect({ on, msg, state }: ConnectParams<{}, State>) {
on(refresh, () => ({ refreshed: true }))
msg.send(refresh())
}Enhancements
- Calling the Component function now gives you a special VNode type with added properties. This is most useful in tests to read the component state in a type safe manner.