import * as React from "react"; import { GatsbyImage, getImage } from "gatsby-plugin-image"; export function NewsSummary({ avatar, author, date }) { return (
{avatar && }
{author || "Skynet Labs Inc"}
{date &&
{date}
}
); }