What is wrong with this code?
const MyComponent = ({ names }) => ( <h1>Hello</h1> <p>Hello again</p> );
React components cannot be defined using functions.
String literals must be surrounded by quotes.
React does not allow components to return more than one element.
The component needs to use the return keyword.