I don’t under what it means by super() should be null or a function when previous lessons said this is how it’s done. tried passing MyComponent through nothing, tried passing nothing through same thing.
Your code so far
class MyComponent extends React.Component(){
constructor(props){
super(props);
}
render(){
return(
<div>
<h1>My Fist React Component!</h1>
</div>
)
}
}
ReactDOM.render(<MyComponent/>,document.getElementById('challenge-node'))
class MyComponent extends React.Component(){
constructor(props){
super(props);
}
render(){
return(
<div>
<h1>My Fist React Component!</h1>
</div>
)
}
}
ReactDOM.render(<MyComponent/>,document.getElementById('challenge-node'))
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Safari/537.36
.
Challenge: Write a React Component from Scratch
Link to the challenge: