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));
};
}
var str = "login@mail.ru;pass\nlogin2@mail.ru;pass2\nlia@dll:pass3"
var arr = str.split("\n").map(function(x){return x.split(/;|:/)})