Tell us what’s happening:
Your code so far
// change code below this line
class MyComponent extends React.Component{
constructor(props) {
super(props);
}
reder(){
return(
<div>
<h1>
My first 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/79.0.3945.88 Safari/537.36
.
Challenge: Write a React Component from Scratch
Link to the challenge:
https://www.freecodecamp.org/learn/front-end-libraries/react/write-a-react-component-from-scratch