import React from "react" import { Grid } from 'theme-ui' import PostLink from "./post-link" const PostList = ({ posts, columns = 1 }) => ( {posts.map((node) => ( ))} ) export default PostList