expected.js 188 B

123456789
  1. // Stateless component with an arrow function
  2. var Component2 = ({ value }) => {
  3. return React.createElement(
  4. "div",
  5. null,
  6. value
  7. );
  8. };
  9. Component2.displayName = "Component2";