Files
talk/plugins/talk-plugin-viewing-options/client/actions.js
T
2017-07-26 15:17:19 -04:00

10 lines
167 B
JavaScript

import {OPEN_MENU, CLOSE_MENU} from './constants';
export const openMenu = () => ({
type: OPEN_MENU,
});
export const closeMenu = () => ({
type: CLOSE_MENU,
});