blob: 3b44530425b344693ae91676ebcbb5fd98668fe1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
export const apiUrl = 'https://feature-json-api--puszcza.netlify.com/api'
export const parsePosts = (posts) =>
posts.map((post) => ({
title: post.title,
image: post.image,
description: post.description,
route: post.path,
meta: post.meta,
}))
|