Skip to content

Commit

Permalink
add: places/placeId 목업데이터 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
extinctmule committed Oct 23, 2024
1 parent 03af588 commit e2b67f9
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions src/__mocks__/placesPlaceId.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
export const placesPlaceId = {
results: [
{
placesId: 1,
placeName: '핑펑카페',
tags: ['조용함', '카공'],
reviews: [
{
reviewId: 101,
userId: 1,
text: '리뷰텍스트임',
uploadedTime: '2024-10-07',
},
],
pung: {
pungId: 201,
userId: 1,
placeId: 1,
imageUrl: '이미지 URL',
text: '대표 펑 텍스트임',
uploadedTime: '2024-10-07',
},
},
{
placesId: 2,
placeName: '펑 없는 카페',
tags: ['조용함', '카공'],
reviews: [
{
reviewId: 102,
userId: 2,
text: '리뷰텍스트임',
uploadedTime: '2024-10-08',
},
],
pung: {
pungId: 202,
userId: 2,
placeId: 2,
imageUrl: '이미지 URL',
text: '대표 펑 텍스트임',
uploadedTime: '2024-10-08',
},
},
],
};

0 comments on commit e2b67f9

Please sign in to comment.