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
{{ message }}
This repository was archived by the owner on Jun 26, 2020. It is now read-only.
When I tried to manually change the js variable declaration style to var PhotoListWrapperView = React.createClass({... , React inspection displayed correctly.
Look like declaring like var PhotoListWrapperView is a must for the tool to work. This may lead to some inconveniences. My case is an example.
I'm using grunt task to first build *.jsx files from *.coffee, and then build *.jsx to *.js files.
Therefore, my *.js files would be something like
And with this js style, when I inspected into the React tab in Chrome, things displayed like:
When I tried to manually change the js variable declaration style to
var PhotoListWrapperView = React.createClass({..., React inspection displayed correctly.Look like declaring like
var PhotoListWrapperViewis a must for the tool to work. This may lead to some inconveniences. My case is an example.