import {TITLE_ACTIONS_SET} from "./defs"; export const setDocumentTitle = (title = "") => { return { type: TITLE_ACTIONS_SET, title: title }; };