Skip to content

Instantly share code, notes, and snippets.

@gc-codesnippets
Created August 25, 2017 15:34
Show Gist options
  • Select an option

  • Save gc-codesnippets/5a2adbf7accb2a4f86d733d43846b5c2 to your computer and use it in GitHub Desktop.

Select an option

Save gc-codesnippets/5a2adbf7accb2a4f86d733d43846b5c2 to your computer and use it in GitHub Desktop.
render () {
return (
<div className='w-100 flex justify-center'>
<Link to='/create' className='fixed bg-white top-0 right-0 pa4 ttu dim black no-underline'>
+ New Post
</Link>
<div className='w-100' style={{ maxWidth: 400 }}>
{this.props.viewer.allPosts.edges.map(({node}) =>
<Post key={node.__id} post={node} />
)}
</div>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment