I keep getting this syntax error, but have no idea where the end sequence is failing:
import React, { Component } from 'react'; import './App.css'; class App extends Component { render() { return ( <div className="App"> <textarea rows="4" cols="50"> <h1>Look at this!</h1> <h2>This is MAGIC!</h2> <a href="https://www.mozilla.com/"> <p>Think about all this power of <code>React</code></p> <textarea /> </div> ); } } export default App;