Not sure where to start?
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
/review
Karma
scrimba
const redux = require("redux")function changeCount(amount = 1) { return { type: "CHANGE_COUNT", payload: amount }}function reducer(state = {count: 0}, action) { switch(action.type) { case "CHANGE_COUNT": return { count: state.count + action.payload } default: return state }}const store = redux.createStore(reducer)store.subscribe(() => { console.log(store.getState())})