main

mattermost/focalboard

Last updated at: 28/12/2023 01:42

menuItem.tsx

TLDR

This file contains a TypeScript definition for the MenuOptionProps type, which is used as a prop in a menu item component.

Classes

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

export type MenuOptionProps = {
    id: string
    name: string
    onClick: (id: string) => void
}