We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8d72b0 commit 0a9cb0dCopy full SHA for 0a9cb0d
examples/counter/actions/CounterActions.js
@@ -1,7 +1,4 @@
1
-import {
2
- INCREMENT_COUNTER,
3
- DECREMENT_COUNTER
4
-} from '../constants/ActionTypes';
+import { INCREMENT_COUNTER, DECREMENT_COUNTER } from '../constants/ActionTypes';
5
import { counterStore } from '../stores';
6
7
export function increment() {
examples/counter/stores/counterStore.js
export default function counterStore(counter = 0, action) {
switch (action.type) {
0 commit comments