Files
2024-01-11 07:49:52 +01:00

27 lines
364 B
Plaintext

{
posts: [
{
id: '1',
title: 'a title',
},
{
id: '2',
title: 'another title',
},
],
comments: [
{
id: '1',
text: 'a comment about post 1',
postId: '1',
},
{
id: '2',
text: 'another comment about post 1',
postId: '1',
},
],
profile: {
name: 'typicode',
},
}