Skip to content

Commit

Permalink
#21 Feat: api 결과에 맞는 목데이터 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
yunseul-dev committed Dec 7, 2023
1 parent fee43c4 commit 6f1f043
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions src/constants/mockData.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,3 +208,50 @@ export const postData = [
timestamp: 1698862838788,
},
];

export const userProfile = {
userId: 1,
username: 'test',
email: '[email protected]',
postList: [
{
postId: 1,
title: '블랙핑크 콘서트 같이 가실 분',
cateName: '[동행]',
createdAt: 185468269255,
},
{
postId: 2,
title: '시눈 팝업 추천 후기',
cateName: '[후기]',
createdAt: 185468269255,
},
{
postId: 3,
title: '스폰지밥 팝업 후기',
cateName: '[후기]',
createdAt: 185468269255,
},
],
};

export const userInterests = [
{
popupId: 1,
img: 'https://images.unsplash.com/photo-1579227114347-15d08fc37cae?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2550&q=80',
title: '티퍼런스 팝업스토어 <잠시, 멈춤 5분>',
address: '서울특별시 종로구',
startDate: '23.12.03',
endDate: '23.12.14',
checkLike: false,
},
{
popupId: 2,
img: 'https://images.unsplash.com/photo-1579227114347-15d08fc37cae?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=2550&q=80',
title: '티퍼런스 팝업스토어 <잠시, 멈춤 5분>',
address: '서울특별시 종로구',
startDate: '23.12.03',
endDate: '23.12.14',
checkLike: true,
},
];

0 comments on commit 6f1f043

Please sign in to comment.