Skip to content

Instantly share code, notes, and snippets.

View rezwan-hossain's full-sized avatar

Rezwan Hossain rezwan-hossain

View GitHub Profile
const redux = require("redux");
const createStore = redux.createStore;
const initialState = {
counter: 0,
};
//reducer
const reducer = (state = initialState, action) => {