-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.js
15 lines (14 loc) · 927 Bytes
/
data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
exports.authors = [
{ id: 1, name: 'Thanos' },
{ id: 2, name: 'John' },
{ id: 3, name: 'Mike' }
]
exports.posts = [
{ id: 1, title: 'Hello world!', author: 1, description: 'Awesome description', url: 'http://localhost:3000' },
{ id: 2, title: 'Hello world 2!', author: 2, description: 'Awesome description', url: 'http://localhost:3000' },
{ id: 3, title: 'Hello world 3!', author: 1, description: 'Awesome description', url: 'http://localhost:3000' },
{ id: 4, title: 'Hello world 4!', author: 3, description: 'Awesome description', url: 'http://localhost:3000' },
{ id: 5, title: 'Hello world 5!', author: 2, description: 'Awesome description', url: 'http://localhost:3000' },
{ id: 6, title: 'Hello world 6!', author: 3, description: 'Awesome description', url: 'http://localhost:3000' },
{ id: 7, title: 'Hello world 7!', author: 1, description: 'Awesome description', url: 'http://localhost:3000' }
]