type BylineProps = { author: string; }; export default function Byline({ author }: BylineProps) { return ( <>
By {author}
); }