Files
talk/plugins/talk-plugin-viewing-options/client/actions.js
T

10 lines
169 B
JavaScript

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