import React from "react" import { graphql } from "gatsby" import Layout from "../components/layout" export default ({ data }) => { const post = data.markdownRemark return (

{post.frontmatter.title}

) } export const query = graphql` query($slug: String!) { markdownRemark(fields: { slug: { eq: $slug } }) { html frontmatter { title } } } `