Curriculum React - Code problem

Tell us what’s happening:

Your code so far


// change code below this line
class MyComponent extends React.Component {
constructor(props) {
  super(props);
}
render(){
  retrun(  
    <div>

      <h1>My First React Component!</h1>

    </div>  
  );
  
}
}


Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36.

Challenge: Write a React Component from Scratch

Link to the challenge:

I found the solution.