Skip to content

Commit

Permalink
chore: #53 - users mock data 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
eeseung committed Nov 7, 2023
1 parent 88d293f commit 9c00dd7
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion src/data/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const mock_memberData = [
]

export const mock_userData = {
id: 'frong',
id: 3,
name: '프롱이',
profile: '/duck.jpg',
mySpaces: [
Expand Down Expand Up @@ -192,3 +192,26 @@ export const mock_replyData = [
auth: true,
},
]

export const mock_usersData = [
{
id: 1,
name: 'dudwns',
oneLiner: '안녕하세요',
profile: '/duck.jpg',
isFollow: true,
},
{
id: 2,
name: 'bomi',
oneLiner: '안녕하세요',
profile: '/duck.jpg',
isFollow: false,
},
{
id: 3,
name: '프롱이',
oneLiner: '안녕하세요',
profile: '/duck.jpg',
},
]

0 comments on commit 9c00dd7

Please sign in to comment.