redux-doctitle/src/actions.js

9 lines
158 B
JavaScript
Raw Normal View History

2018-01-18 16:53:52 +00:00
import {TITLE_ACTIONS_SET} from "./defs";
export const setDocumentTitle = (title = "") => {
return {
type: TITLE_ACTIONS_SET,
title: title
};
};