Files
remark42/web/app/components/thread/thread.actions.js
T

7 lines
169 B
JavaScript

export const THREAD_SET_COLLAPSE = 'THREAD/COLLAPSE_SET';
export const setCollapse = (comment, collapsed) => ({
type: THREAD_SET_COLLAPSE,
comment,
collapsed,
});