-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
03af588
commit e2b67f9
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
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', | ||
}, | ||
}, | ||
], | ||
}; |