Created
August 25, 2017 15:34
-
-
Save gc-codesnippets/5a2adbf7accb2a4f86d733d43846b5c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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