Bill
Bill

Reputation: 1195

Debugging a React App, with Chrome extension "React Developer Tools 4.10.1" I'm expecting to see a React Tab

From this tutorial, I see a React tab in dev tools to help debug. But not getting it on my own. I have Chrome extension "React Developer Tools 4.10.1". What am I missing?

enter image description here

Upvotes: 0

Views: 778

Answers (1)

kogonidze
kogonidze

Reputation: 157

Now there is two tabs in React Dev Tools: Components and Profiler.

enter image description here

Components expectedly display the structure of your components. Probably it`s what you are looking for.

enter image description here

Profiler let`s you to take records during debugging of application and see useful diagnostic information.

enter image description here

Upvotes: 1

Related Questions