16 lines
162 B
JavaScript
Raw Normal View History

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