You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
308 B
11 lines
308 B
export const DROPDOWN_MENU_OPEN = 'DROPDOWN_MENU_OPEN';
|
|
export const DROPDOWN_MENU_CLOSE = 'DROPDOWN_MENU_CLOSE';
|
|
|
|
export function openDropdownMenu(id, placement) {
|
|
return { type: DROPDOWN_MENU_OPEN, id, placement };
|
|
}
|
|
|
|
export function closeDropdownMenu(id) {
|
|
return { type: DROPDOWN_MENU_CLOSE, id };
|
|
}
|