aboutsummaryrefslogtreecommitdiff
path: root/src/test/fixtures/simple-component.tsx
blob: 9f4fe729af5a9c4b3c4dd0cf93badf0c3512e093 (plain) (blame)
1
2
3
4
5
6
7
8
9
import * as React from "react";

type WelcomeProps = {
  greeting?: string;
};

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