mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui.git
synced 2025-11-02 19:57:58 +00:00
9 lines
121 B
JavaScript
9 lines
121 B
JavaScript
import { SET_MENU } from './constants';
|
|
|
|
export function setMenu(menu) {
|
|
return {
|
|
type: SET_MENU,
|
|
menu,
|
|
};
|
|
}
|