aboutsummaryrefslogtreecommitdiff
path: root/src/test/fixtures/simple-component.tsx
blob: ab328e66bde478d3e46fbb9bb1638f9ef2a7d897 (plain) (blame)
1
2
3
4
5
6
7
type WelcomeProps = {
  greeting?: string;
};

export function Welcome(props: WelcomeProps) {
  return <div>{props.greeting}</div>;
}