function MaybeLink()

in src/theme/BlogPostItem/Header/Author/index.tsx [7:12]


function MaybeLink(props: LinkProps): JSX.Element {
  if (props.href) {
    return <Link {...props} />;
  }
  return <>{props.children}</>;
}