Created
December 29, 2016 20:01
-
-
Save paularmstrong/6cd0b11e1461561055abdb59f4edad71 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const state = { | |
timelines: { | |
home: { | |
tweets: [ | |
'123', | |
'456', | |
'789', | |
'012' | |
] | |
} | |
}, | |
tweets: { | |
'123': { id: '123', text: 'my tweet', user: '345', in_reply_to_tweet: '456' }, | |
'456': { id: '456', text: 'my tweet', user: '345' }, | |
'789': { id: '789', text: 'my tweet', user: '901' }, | |
'012': { id: '012', text: 'my tweet', user: '234' } | |
}, | |
users: { | |
'345': { id: '123', name: 'Jimmy' }, | |
'901': { id: '456', name: 'Jane' }, | |
'234': { id: '789', name: 'Julie' } | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment