summaryrefslogtreecommitdiff
path: root/test/fixtures/react-component/src/components/Hello.jsx
blob: 4b6c416a98e7fb33757105b5bb79445baeb27321 (plain) (blame)
1
2
3
4
5
import React from 'react';

export default function ({ name }) {
  return <h2 id="react-h2">Hello {name}!</h2>;
}