-
Notifications
You must be signed in to change notification settings - Fork 3
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
a61d032
commit 6becf18
Showing
3 changed files
with
111 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,86 @@ | ||
import { USER_DATA } from './headerMockData'; | ||
|
||
export const REVIEW_LIST_DATA = { | ||
averageRating: 4, | ||
totalCount: 6, | ||
reviews: [ | ||
{ | ||
id: 1, | ||
user: { | ||
profileImageUrl: USER_DATA.profileImageUrl, | ||
nickname: USER_DATA.nickname, | ||
id: USER_DATA.id, | ||
}, | ||
activityId: 1, | ||
rating: 1, | ||
content: '너무 재밌게 게임했습니다. 다음에 또 하고 싶어요. 최곱니다!!!', | ||
createdAt: '2024-03-22T15:24:25.173Z', | ||
updatedAt: '2024-03-23T15:24:25.173Z', | ||
}, | ||
{ | ||
id: 2, | ||
user: { | ||
profileImageUrl: USER_DATA.profileImageUrl, | ||
nickname: USER_DATA.nickname, | ||
id: USER_DATA.id, | ||
}, | ||
activityId: 1, | ||
rating: 5, | ||
content: '너무 재밌게 게임했습니다. 다음에 또 하고 싶어요. 최곱니다!!!', | ||
createdAt: '2024-03-23T15:24:25.173Z', | ||
updatedAt: '2024-03-23T15:24:25.173Z', | ||
}, | ||
{ | ||
id: 3, | ||
user: { | ||
profileImageUrl: USER_DATA.profileImageUrl, | ||
nickname: USER_DATA.nickname, | ||
id: USER_DATA.id, | ||
}, | ||
activityId: 1, | ||
rating: 3, | ||
content: '너무 재밌게 게임했습니다. 다음에 또 하고 싶어요. 최곱니다!!!', | ||
createdAt: '2024-03-24T15:24:25.173Z', | ||
updatedAt: '2024-03-23T15:24:25.173Z', | ||
}, | ||
{ | ||
id: 4, | ||
user: { | ||
profileImageUrl: USER_DATA.profileImageUrl, | ||
nickname: USER_DATA.nickname, | ||
id: USER_DATA.id, | ||
}, | ||
activityId: 1, | ||
rating: 2, | ||
content: '너무 재밌게 게임했습니다. 다음에 또 하고 싶어요. 최곱니다!!!', | ||
createdAt: '2024-03-25T15:24:25.173Z', | ||
updatedAt: '2024-03-23T15:24:25.173Z', | ||
}, | ||
{ | ||
id: 5, | ||
user: { | ||
profileImageUrl: USER_DATA.profileImageUrl, | ||
nickname: USER_DATA.nickname, | ||
id: USER_DATA.id, | ||
}, | ||
activityId: 1, | ||
rating: 2, | ||
content: '너무 재밌게 게임했습니다. 다음에 또 하고 싶어요. 최곱니다!!!', | ||
createdAt: '2024-03-25T15:24:25.173Z', | ||
updatedAt: '2024-03-23T15:24:25.173Z', | ||
}, | ||
{ | ||
id: 6, | ||
user: { | ||
profileImageUrl: USER_DATA.profileImageUrl, | ||
nickname: USER_DATA.nickname, | ||
id: USER_DATA.id, | ||
}, | ||
activityId: 1, | ||
rating: 2, | ||
content: '너무 재밌게 게임했습니다. 다음에 또 하고 싶어요. 최곱니다!!!', | ||
createdAt: '2024-03-25T15:24:25.173Z', | ||
updatedAt: '2024-03-23T15:24:25.173Z', | ||
}, | ||
], | ||
}; |
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
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