“Plantilla de tienda Redux” Código de respuesta

plantilla de redux crear aplicación react

npx create-react-app my-app --template redux
Gorgeous Goshawk

Plantilla de tienda Redux

import { createStore , applyMiddleware , compose } from "redux";
import rootReducer from './reducers/rootReducer.js'
import thunk from 'redux-thunk'
import { Provider } from "react-redux";

const store = createStore(
  rootReducer,
  compose(
    applyMiddleware(thunk),
    window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__()
  )
);
ReactDOM.render( 
  <Provider store = {store}>
    <App /> </Provider>,
  document.getElementById("root")
);
Faryad Az Zim

Respuestas similares a “Plantilla de tienda Redux”

Preguntas similares a “Plantilla de tienda Redux”

Más respuestas relacionadas con “Plantilla de tienda Redux” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código