You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importReact,{memo}from'react'import{compose,withProps}from'recompose'exportconstComponent=compose(memo,withProps({value: 'Hello'}))(({ value })=>(<div>{value}</div>))
The current behavior
Making changes to Component.js does not re-render the element in main.js.
The transformed Component.js module does not register the Component for refresh.
The expected behavior
Making changes to Component.js does re-render the element in main.js.