mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 20:57:49 +08:00
10 lines
229 B
JavaScript
10 lines
229 B
JavaScript
import {VIEWING_OPTIONS_OPEN, VIEWING_OPTIONS_CLOSE} from './constants';
|
|
|
|
export const openViewingOptions = () => ({
|
|
type: VIEWING_OPTIONS_OPEN
|
|
});
|
|
|
|
export const closeViewingOptions = () => ({
|
|
type: VIEWING_OPTIONS_CLOSE
|
|
});
|