import BlogPost from 'src/components/BlogPost' export const QUERY = gql` query BlogPostQuery($id: Int!) { post(id: $id) { id title body createdAt } } ` export const Loading = () =>