interface Props { post: any; } export default function (props: Props) { return (
  • {props.post.data.title}

    {props.post.data.description}

  • ); }