import Link from 'next/link' import LayoutBase from './LayoutBase' export const LayoutIndex = props => { const { posts } = props return ( {posts.map(p => (
{p.title}
{p.summary}
))}
) }