scrimba
Redux Fundamentals With React
Reducers
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Reducers
AboutCommentsNotes
Reducers
Expand for more info
store
index.js
run
preview
console
import { createStore } from 'redux'

const store = createStore()

export default store




// const reducer = (state, action) => {
// return state
// }

Console
index.html
-2:22