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

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