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
Another option - you might see "ProxyFacade", which is a wrapper for Functional Component
ProxyFacade = function(props, context) {
/*
! THIS IS NOT YOUR COMPONENT !
! THIS IS REACT-HOT-LOADER !
And you are probably looking for a function component of yours
It's hidden, but there is a way to fix this - just reconfigure your application a bit
see https://github.com/gaearon/react-hot-loader/issues/1311
*/
const result = CurrentComponent(props, context);
You have clicked "Show Source" at Dev Tools, but they are displaying a class wrapper, instead of
Component.render
onShow Source
action.Well, first of all - this is what RHL does, and this is how RHL works. However, you shall never face this issue, unless:
pureRender: false
setrender
, notconstructor
facebook/react#16749Another option - you might see "ProxyFacade", which is a wrapper for Functional Component
Treatment for this case is a bit different:
react-hot-dom
viawebpack-plugin
orhot-loader/react-dom
. Really - see ! THIS IS NOT YOUR COMPONENT ! #1311The text was updated successfully, but these errors were encountered: