import { Link, routes } from '@redwoodjs/router' import BlogPost from 'src/components/BlogPost' export const QUERY = gql` query BlogPostsQuery { posts { id title body createdAt } } ` export const Loading = () =>