All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hooks.menu.js Maven / Gradle / Ivy

import { useContext }      from "react";
import { ConfigContext }   from "contexts/ConfigContext"
import { MenuItemContext } from "contexts/MenuContext";

export const useMenu = () => useContext(ConfigContext)

export const useMenuItems = (options) => {
  const handleMenu = useContext(MenuItemContext)
  return handleMenu && handleMenu(options)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy