Skip to content

Commit 0a9cb0d

Browse files
committed
Readability tweaks
1 parent f8d72b0 commit 0a9cb0d

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

examples/counter/actions/CounterActions.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
import {
2-
INCREMENT_COUNTER,
3-
DECREMENT_COUNTER
4-
} from '../constants/ActionTypes';
1+
import { INCREMENT_COUNTER, DECREMENT_COUNTER } from '../constants/ActionTypes';
52
import { counterStore } from '../stores';
63

74
export function increment() {

examples/counter/stores/counterStore.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
import {
2-
INCREMENT_COUNTER,
3-
DECREMENT_COUNTER
4-
} from '../constants/ActionTypes';
1+
import { INCREMENT_COUNTER, DECREMENT_COUNTER } from '../constants/ActionTypes';
52

63
export default function counterStore(counter = 0, action) {
74
switch (action.type) {

0 commit comments

Comments
 (0)