input.js 117 B

123456
  1. // Stateless component with an arrow function
  2. var Component2 = ({value}) => {
  3. return (
  4. <div>{value}</div>
  5. )
  6. }