I have a HOC-wrapped-functional-component here
export default wrapperHoc( function myComponent ({ someProps }){
return(
<div/>
)
})
How do i write getInitialProps for myComponent ?
Should i call myComponent's getInitialProps in wrapperHoc?