UNPKG

@kadconsulting/dry

Version:
25 lines 549 B
export const mockBlogPosts = [ { id: 1, title: 'First Blog Post', summary: 'Summary of the first blog post', }, { id: 2, title: 'Second Blog Post', summary: 'Summary of the second blog post', }, ]; export const mockComments = [ { id: 1, postId: 1, content: 'This is a comment on the first blog post', }, { id: 2, postId: 1, content: 'Another comment on the first blog post', }, ]; //# sourceMappingURL=mockBlogData.js.map