mirror of
https://github.com/wassname/talk.git
synced 2026-08-20 12:50:41 +08:00
10 lines
229 B
JavaScript
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
|
|
});
|