Interface for the entry of DropDown menu
const menuEntries: Array<DropDownEntry> = [ { text: "Home", link: "/" }, { text: "About", link: "/about" }, { text: "Blog", link: "/blog" },]; Copy
const menuEntries: Array<DropDownEntry> = [ { text: "Home", link: "/" }, { text: "About", link: "/about" }, { text: "Blog", link: "/blog" },];
Hyperlink to the page
Text to be displayed on the menu
Interface for the entry of DropDown menu
Example