Skip to content

Instantly share code, notes, and snippets.

View nivla's full-sized avatar

Alvin Dickson nivla

View GitHub Profile
@nivla
nivla / counter.js
Created December 16, 2015 20:30
List counter using react and redux.
import {createStore} from 'redux';
import React from 'react';
import ReactDOM from 'react-dom';
const todoApp = (state = [0], action) => {
switch (action.type) {
case 'INCREMENT':
return [
...state.slice(0, action.index),
state[action.index] + 1,