16 lines
158 B
JavaScript
Raw Normal View History

/*
*
* List actions
*
*/
import {
DEFAULT_ACTION,
} from './constants';
export function defaultAction() {
return {
type: DEFAULT_ACTION,
};
}