type WelcomeProps = { greeting?: string; }; export function Welcome(props: WelcomeProps) { return
{props.greeting}
; }