xxxxxxxxxx
import Provider from 'react-redux';
import reducers from './reducers';
import {createStore,compose,applyMiddleware} from 'redux';
import {thunk} from 'redux-thunk';
//code for import app.js goes here
// reducers are JavaScript functions that specify
//how the state of your application should change in response to different actions.
const store=createStore(reducers,compose(applymiddleware(thunk)))