
Sign up to save your podcasts
Or


https://3speak.tv/watch?v=jfdesousa7/wrwvtuje
En el día de hoy quiero hablar de Redux.js redux es una librería de js que nos permite gestionar todos los estados de nuestra App. Voy a explicar de manera introductoria y superficial como funciona el flujo de redux.
Index.js
const SUMAR = "SUMAR"
const initialState = {
const sumando = () => {
const reducer = ( (state = initialState , action) => {
const store = createStore(reducer)
console.log(" ESTADO INICIAL ", store.getState())
store.subscribe( () => console.log(" ACTUALIZANDO ESTADO ", store.getState()))
store.dispatch(sumando())
By jfdesousa7https://3speak.tv/watch?v=jfdesousa7/wrwvtuje
En el día de hoy quiero hablar de Redux.js redux es una librería de js que nos permite gestionar todos los estados de nuestra App. Voy a explicar de manera introductoria y superficial como funciona el flujo de redux.
Index.js
const SUMAR = "SUMAR"
const initialState = {
const sumando = () => {
const reducer = ( (state = initialState , action) => {
const store = createStore(reducer)
console.log(" ESTADO INICIAL ", store.getState())
store.subscribe( () => console.log(" ACTUALIZANDO ESTADO ", store.getState()))
store.dispatch(sumando())