From 9c00dd7743cf4a2674ea1d0690e6e78de147a730 Mon Sep 17 00:00:00 2001 From: eeseung Date: Tue, 7 Nov 2023 13:55:33 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20#53=20-=20users=20mock=20data=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/data/index.ts | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/src/data/index.ts b/src/data/index.ts index a5c580fd..24aacd27 100644 --- a/src/data/index.ts +++ b/src/data/index.ts @@ -96,7 +96,7 @@ export const mock_memberData = [ ] export const mock_userData = { - id: 'frong', + id: 3, name: '프롱이', profile: '/duck.jpg', mySpaces: [ @@ -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', + }, +]