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
// Additional fake stories
const stories = {
"1": {
title: "First Fake Story",
content: "This is the content of the first fake story. Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
comments: [
{ user: "commenter1", text: "This is the first comment on the first fake story." },
{ user: "commenter2", text: "This is the second comment on the first fake story." },
],
},
"2": {
title: "Second Fake Story",
content: "This is the content of the second fake story. Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
comments: [
{ user: "commenter3", text: "This is the first comment on the second fake story." },
{ user: "commenter4", text: "This is the second comment on the second fake story." },
],
},
"3": {
title: "Third Fake Story",
content: "This is the content of the third fake story. Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
comments: [
{ user: "commenter5", text: "This is the first comment on the third fake story." },
{ user: "commenter6", text: "This is the second comment on the third fake story." },
],
},
"4": {
title: "Fourth Fake Story",
content: "This is the content of the fourth fake story. Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
comments: [
{ user: "commenter7", text: "This is the first comment on the fourth fake story." },
{ user: "commenter8", text: "This is the second comment on the fourth fake story." },
],
},
"5": {
title: "Fifth Fake Story",
content: "This is the content of the fifth fake story. Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
comments: [
{ user: "commenter9", text: "This is the first comment on the fifth fake story." },
{ user: "commenter10", text: "This is the second comment on the fifth fake story." },
],
},
};