Reactjs – Hello I have a code that is compiling but my title and paragraph are not showing
import React, { component} from 'react'; class Hello extends component{ render(){ return <div> <h1>Hello World</h1> <p>Welcome to React</p> </div> } } export default Hello; the code works but it doesnt return anything besides a blank page --------------------------------this is from the…