Initial commit from boilerplate

This commit is contained in:
2017-02-01 22:09:06 -07:00
commit ff17b2a0d3
45 changed files with 2219 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
export const INCREMENT = 'INCREMENT';
export const DECREMENT = 'DECREMENT';

View File

@@ -0,0 +1,13 @@
import * as types from './actionTypes';
export function increment() {
return {
type: types.INCREMENT
};
}
export function decrement() {
return {
type: types.DECREMENT
};
}