mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 11:01:59 +08:00
10 lines
167 B
JavaScript
10 lines
167 B
JavaScript
import {OPEN_MENU, CLOSE_MENU} from './constants';
|
|
|
|
export const openMenu = () => ({
|
|
type: OPEN_MENU,
|
|
});
|
|
|
|
export const closeMenu = () => ({
|
|
type: CLOSE_MENU,
|
|
});
|