import { ContentBlocks } from "./content-blocks"; import DateComponent from "./date"; import Avatar from "./avatar"; export default function PostBody({ content }) { return (
{content.author.length ? ( ) : null}
{content.postingDate !== "now" ? (
Posted
) : null}
); }