@kadconsulting/dry
Version:
KAD Reusable Component Library
25 lines • 549 B
JavaScript
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