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

10 lines
229 B
JavaScript

import {OPEN_VIEWING_OPTIONS, CLOSE_VIEWING_OPTIONS} from './constants';
export const openViewingOptions = () => ({
type: OPEN_VIEWING_OPTIONS
});
export const closeViewingOptions = () => ({
type: CLOSE_VIEWING_OPTIONS
});