mirror of
https://github.com/wassname/talk.git
synced 2026-07-09 15:21:15 +08:00
11 lines
175 B
JavaScript
11 lines
175 B
JavaScript
import {OPEN_MENU, CLOSE_MENU} from './constants';
|
|
|
|
export const openMenu = (id) => ({
|
|
type: OPEN_MENU,
|
|
id,
|
|
});
|
|
|
|
export const closeMenu = () => ({
|
|
type: CLOSE_MENU,
|
|
});
|