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