YOU CAN TRY 👉 https://chrome.google.com/webstore/detail/react-inspector/gkkcgbepkkhfnnjolcaggogkjodmlpkh
Easily detect React components source code from Chrome!
The Inspector launch with Ctrl+Shift+X (Command+Shift+X on Mac).
You can detect and open the React component source code easily.
- Run the Dev server and Open your react app.
- Press Ctrl+Shift+X (Command+Shift+X on Mac) on Chrome.
- Inspect your react components and click it.
You can edit the open in editor URL on the options page. If you are not VSCode user, you can edit it to your favorite editor URL-schemes.
- Installed React Developer Tools
- Works only with development builds.
- Source code must be stored on local disk
The React Inspector accesses the __REACT_DEVTOOLS_GLOBAL_HOOK__
set globally by the React Devtools and finds the React Fiber in the HTML element that the inspector hovered over.
The React Fiber contains information about the source code that will be added during development, so we use that information to open the VSCode.
Reference