mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 04:37:04 +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,
|
|
});
|