about summary refs log tree commit diff
path: root/components/Posts/PostList/index.js
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-25 22:32:16 +0100
committerGitHub <noreply@github.com>2020-01-25 22:32:16 +0100
commit5305c18b05803bf0d032027e645c71ac59627621 (patch)
tree9d4597e72912c9fe2b4c38b519d8fc3a09948fd5 /components/Posts/PostList/index.js
parent1b74216fc4afa740991dcc9986eb6843c5b07a59 (diff)
parent32adaba2ded83ab0d69ebeb4d1d839476d94c476 (diff)
downloadpuszcza-5305c18b05803bf0d032027e645c71ac59627621.tar.gz
puszcza-5305c18b05803bf0d032027e645c71ac59627621.zip
Merge pull request #23 from 19pdh/post-image
Post image
Diffstat (limited to 'components/Posts/PostList/index.js')
-rw-r--r--components/Posts/PostList/index.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/components/Posts/PostList/index.js b/components/Posts/PostList/index.js
index 11d44ff..7e0b1f4 100644
--- a/components/Posts/PostList/index.js
+++ b/components/Posts/PostList/index.js
@@ -12,11 +12,12 @@ export const getPosts = async () => {
   }
 }
 
-export const parsePosts = posts =>
-  posts.map(post => ({
+export const parsePosts = (posts) =>
+  posts.map((post) => ({
     title: post.content.meta.title,
+    image: post.content.meta.image,
     description: post.content.description,
-    route: post.route
+    route: post.route,
   }))
 
 export default PostList