const Title = () => {
  return <div>Title</div>;
};
interface TitleProps {
  age: number;
  job: string;
  city: string;
  children?: React.ReactNode;
}
const Title: React.FC<TitleProps> = ({ age, job, city, children }) => {
  return (
    <div>
      Title {age} {job} {children} {city}
    </div>
  );
};
interface TitleProps {
  age: number;
  job: string;
  city: string;
  children?: React.ReactNode;
}
const Title = ({ age, job, children, city }: TitleProps): JSX.Element => {
  return (
    <div>
      Title {age} {job} {children} {city}
    </div>
  );
};
interface TitleProps {
  age: number;
  job: string;
  city: string;
  children?: React.ReactNode;
}
const Title: React.FC = (): JSX.Element => {
  return <div>Title</div>;
};