Do the following:
git clone
npm install
npm start
The architecture of the redux store is as follows:
{
tweets: {
tweetId: { tweetId, authorId, timestamp, text, likes, replies, replyingTo},
tweetId: { tweetId, authorId, timestamp, text, likes, replies, replyingTo}
},
users: {
userId: {userId, userName, avatar, tweets array},
userId: {userId, userName, avatar, tweets array}
},
authedUser: userId
}