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