-
Notifications
You must be signed in to change notification settings - Fork 1
/
FeedData.js
54 lines (54 loc) · 1.37 KB
/
FeedData.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
export default [
{
id: "asd123",
user: {
username: "양종선",
profilePhotoUrl: require("./assets/logo.png"),
},
Review: {
RestName: "신안산대학교",
MenuName: "컴퓨터정보",
photoUrl: require("./assets/1.jpg"),
stars: 3
}
},
{
id: "asd124",
user: {
username: "황윤지",
profilePhotoUrl: require("./assets/defaultProfilePhoto.jpg"),
},
Review: {
RestName: "학식",
MenuName: "라면",
photoUrl: require("./assets/ramen.jpg"),
stars: 4
}
},
{
id: "asd125",
user: {
username: "윤희지",
profilePhotoUrl: require("./assets/defaultProfilePhoto.jpg"),
},
Review: {
RestName: "맘스터치",
MenuName: "싸이버거",
photoUrl: require("./assets/burger.jpg"),
stars: 5
}
},
{
id: "asd126",
user: {
username: "김승주",
profilePhotoUrl: require("./assets/defaultProfilePhoto.jpg"),
},
Review: {
RestName: "신안산대학교",
MenuName: "컴퓨터정보",
photoUrl: require("./assets/1.jpg"),
stars: 3
}
},
];