This example works: ``` render (h) { const hi = function () { console.log('hello') } return ( <div onClick={hi}> click me! </div> ) } ``` It doesn't: ``` render (h) { const hi = function () { console.log('hello') } return ( <div { ...{ onClick: hi } } > click me! </div> ) } ```