Build a Markdown Previewer(Issue Resolved)

Tell us what’s happening:

The text I have typed in wont display.
Can someone please help me.
I've done research on the internet, I am just not having luck finding an answer.

Your code so far

<div id ='root'>
</div>



class App extends React.Component {
  render() { 
    return (
    <div> Markdown Previewer </div>
    )
  }
}

ReactDOM.render(<app/>, document.getElementById('root'))

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36.

Link to the challenge:

Did you remember to import React? A link to the actual project would be helpful. One thing I do notice right off the bat though is that your class App is capitalized, but your ReactDOM.render call has <app/> instead of <App/>.

Yes I did remember that. I figured it out. I know I for got to capitalize the A in app.
Thank you for helping out.