import { Link,routes } from '@redwoodjs/router' const BlogPost = ({ post }) => { return (

{post.title}

{post.body}
) } export default BlogPost