platform-bible-react
    Preparing search index...

    Type Alias DropdownItem

    type DropdownItem = {
        itemType: DropdownMenuItemType;
        label: string;
        onClick: () => void;
    }
    Index

    Properties

    The itemType determines the DropdownMenuItemType type as either Check or Radio.

    label: string

    The label is the text that will be displayed on the dropdown item.

    onClick: () => void

    The onClick function is called when the item is clicked.