ReactDOM.render(
<h1>Hello, world!</h1>,
document.getElementById('example')
);
function receiveUserPre(userId, entities) {
return dispatch => {
dispatch(receiveUser(entities));
dispatch(fetchUserData(userId, entities.users[userId].username));
};
}