diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-25 19:41:39 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-25 19:41:39 +0100 |
commit | 1aa3a88b21539aa06572d86324673baeddfbe46f (patch) | |
tree | 72baffcf2b6777e50974ac7dad71c5c09a19403b /components/Posts/PostList/index.js | |
parent | 18b44a3aebc56d32060e1d879a8f096eafbf262f (diff) | |
download | puszcza-1aa3a88b21539aa06572d86324673baeddfbe46f.tar.gz puszcza-1aa3a88b21539aa06572d86324673baeddfbe46f.zip |
Add image from meta
Diffstat (limited to 'components/Posts/PostList/index.js')
-rw-r--r-- | components/Posts/PostList/index.js | 7 |
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 |