function Greeting(name: string) {
  return <h1>Hello, {name}!</h1>;
}

const arrow = (name: string) => <p>{name}</p>;

const maybeShow = (show: boolean) =>
  show ? <div>visible</div> : null;
