\n \n \n {post.title}\n \n \n \n {post.tags && (\n \n {` — `}\n \n \n )}\n {post.timeToRead && ` — `}\n {post.timeToRead && {post.timeToRead} min read}\n
\n \n \n)\n\nexport default Post\n","import { graphql } from \"gatsby\"\nimport PostComponent from \"../components/post\"\n\nexport default PostComponent\n\nexport const query = graphql`\n query ($slug: String!, $formatString: String!) {\n post(slug: { eq: $slug }) {\n slug\n title\n date(formatString: $formatString)\n tags {\n name\n slug\n }\n description\n canonicalUrl\n body\n excerpt\n timeToRead\n banner {\n childImageSharp {\n resize(width: 1200, quality: 90) {\n src\n }\n }\n }\n }\n }\n`\n","import * as React from \"react\"\nimport Post from \"../../../components/post\"\n\ntype Props = {\n data: {\n post: any\n [key: string]: any\n }\n [key: string]: any\n}\n\nexport default function MinimalBlogCorePost({ ...props }: Props) {\n return