Files
talk/plugins/talk-plugin-viewing-options/client/actions.js
T
2018-01-11 20:00:34 -07:00

10 lines
169 B
JavaScript

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