const composeEnhancers = window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ || compose;
// componentDidMount(){
// }
const store = createStore(reducers, composeEnhancers(
applyMiddleware(loger, thunk)
));
var data = JSON.parse(this.responseText);
this.state.students.map(function (val, ind) {
return <div key={ind}>{val.name}</div>
})
this.state.students.map(function (val, ind) {
return <div key={ind}>{val.name}</div>
})