Interface DropDownEntry

Interface for the entry of DropDown menu

const menuEntries: Array<DropDownEntry> = [
{ text: "Home", link: "/" },
{ text: "About", link: "/about" },
{ text: "Blog", link: "/blog" },
];
interface DropDownEntry {
    link: string;
    text: string;
}

Properties

Properties

link: string

Hyperlink to the page

text: string

Text to be displayed on the menu