@stevekinney
const state = {
posts: {
firstPostId: {
title: 'The Good News About React Hooks',
description: 'They exist, but not yet.',
author: 'firstAuthorId',
comments: ['firstCommentId', 'secondCommentId'],
},
// …
},
authors: {
firstAuthorId: {
name: 'Robbie Holmes',
twitter: ‘@robbiethegeek',
},
},
comments: {
firstCommentId: {
body: 'Commenting on my own post!',
author: 'firstAuthorId',
},
// …
},
};