1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-relay-modern-server-express/server/db.js

35 lines
543 B
JavaScript
Raw Normal View History

module.exports = {
blogPosts: [
{
id: 'p1',
title: 'Title 1',
content: 'Lorem Ipsum 1'
},
{
id: 'p2',
title: 'Title 2',
content: 'Lorem Ipsum 2'
},
{
id: 'p3',
title: 'Title 3',
content: 'Lorem Ipsum 3'
},
{
id: 'p4',
title: 'Title 4',
content: 'Lorem Ipsum 4'
},
{
id: 'p5',
title: 'Title 5',
content: 'Lorem Ipsum 5'
},
{
id: 'p6',
title: 'Title 6',
content: 'Lorem Ipsum 6'
}
]
}