How does lifecycle methods work in hyperapp v2? Why don't I see 'hello' in my console?
import { h, app } from "hyperapp";
app({
init: { name: 'world' },
view: ({ name }) => h('div', {
onCreate: () => console.log('hello')
}, `hello ${name}!!!`),
node: document.getElementById("app")
});