-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdummyData.js
74 lines (74 loc) · 1.6 KB
/
dummyData.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import shubhamImage from "./assets/ProfileImages/shubham.png";
import adityaImage from "./assets/ProfileImages/aditya.png";
import amlanImage from "./assets/ProfileImages/amlan.png";
import adyasarImage from "./assets/ProfileImages/adyasar.png";
import gauriImage from "./assets/ProfileImages/gauri.png";
import prakharImage from "./assets/ProfileImages/prakhar.png";
import pratikshaImage from "./assets/ProfileImages/pratiksha.png";
import preetiImage from "./assets/ProfileImages/preeti.png";
import rishabhImage from "./assets/ProfileImages/rishabh.png";
export const dummyData = [
{
id: 0,
name: "ssk.exe",
profileImage: shubhamImage,
likes: "1,729",
storyTapped: false,
},
{
id: 1,
name: "Aditya",
profileImage: adityaImage,
likes: "1,729",
storyTapped: false,
},
{
id: 2,
name: "Amlan",
profileImage: amlanImage,
likes: "1,729",
storyTapped: false,
},
{
id: 3,
name: "Adyasar",
profileImage: adyasarImage,
likes: "1,729",
storyTapped: false,
},
{
id: 4,
name: "Gauri",
profileImage: gauriImage,
likes: "1,729",
storyTapped: false,
},
{
id: 5,
name: "Prakhar",
profileImage: prakharImage,
likes: "1,729",
storyTapped: false,
},
{
id: 6,
name: "Pratiksha",
profileImage: pratikshaImage,
likes: "1,729",
storyTapped: false,
},
{
id: 7,
name: "Preeti",
profileImage: preetiImage,
likes: "1,729",
storyTapped: false,
},
{
id: 8,
name: "Rishabh",
profileImage: rishabhImage,
likes: "1,729",
storyTapped: false,
},
];