Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

553
Views
Chrome developer tools , React component not showing component structure

I'm new to React and i made a simple React app.

class App extends React.Component {
state = {
    counter: 0
}
render() {
    return (
      <div>
        <h1>Hello!</h1>
      </div>
    );
 }
}



ReactDOM.render(<App />, document.getElementById('root'))

Output in browser seems to be okay.(React Element has been rendered and it's visible on browser)- DOM elements has been created but in developer tools in Bookmark Components App is shown with red triangle and you cannot see a structure of component created, hovering on triangle showing message:"This component is not running in strict mode.." enter image description here

Should be rather something like that(my tutor screenshot)

enter image description here

I added strict mode to component in Visual studio code ide (no result):

   <React.StrictMode>
      <div>
        <h1>Hello!</h1>
      </div>
  </React.StrictMode>
about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

Hi use react developer Tools extension

https://chrome.google.com/webstore/detail/react-developer-tools/fmkadmapgofadopljbjfkapdkoienihi?hl=en

about 4 years ago · Juan Pablo Isaza Report

0

You have to wrap it around your component causing the issue, not only around a div. There where you call your App component, probably from index.js?

  <React.StrictMode>
     <App />
  </React.StrictMode>

And remove all your filters from the settings to show the structure:

enter image description here

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!