-
Notifications
You must be signed in to change notification settings - Fork 1
/
posts.js
28 lines (27 loc) · 1.28 KB
/
posts.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
const POSTS = [
{ title: 'The weather today', vote: 10, id: '1' },
{ title: 'The weather today', vote: 10, id: '2' },
{ title: 'The weather today', vote: 10, id: '3' },
{ title: 'The weather today', vote: 10, id: '4' },
{ title: 'The weather today', vote: 10, id: '5' },
{ title: 'The weather today', vote: 10, id: '6' },
{ title: 'The weather today', vote: 10, id: '1' },
{ title: 'The weather today', vote: 10, id: '2' },
{ title: 'The weather today', vote: 10, id: '3' },
{ title: 'The weather today', vote: 10, id: '4' },
{ title: 'The weather today', vote: 10, id: '5' },
{ title: 'The weather today', vote: 10, id: '6' },
{ title: 'The weather today', vote: 10, id: '1' },
{ title: 'The weather today', vote: 10, id: '2' },
{ title: 'The weather today', vote: 10, id: '3' },
{ title: 'The weather today', vote: 10, id: '4' },
{ title: 'The weather today', vote: 10, id: '5' },
{ title: 'The weather today', vote: 10, id: '6' },
{ title: 'The weather today', vote: 10, id: '1' },
{ title: 'The weather today', vote: 10, id: '2' },
{ title: 'The weather today', vote: 10, id: '3' },
{ title: 'The weather today', vote: 10, id: '4' },
{ title: 'The weather today', vote: 10, id: '5' },
{ title: 'The weather today', vote: 10, id: '6' },
];
export { POSTS };