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