Write a React Component from Scratch Can't pass

Tell us what’s happening:
Can anyone tell me where I’m wrong?

Your code so far


// change code below this line
class MyComponent extends React.Component {
    constructor(props){
        super(props)
    };
    render() {
        return (
            <div className="challenge-node">
                <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/73.0.3683.103 Safari/537.36.

Link to the challenge:

hey zuc0n, try to surround your component in ReactDOM.render first argument with React component tag

<YourComponent />