You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/components/menu/items/MenuItemWithDataTestId.tsx

10 lines
225 B
TypeScript

import { Item, ItemProps } from 'react-contexify';
export function ItemWithDataTestId({ children, ...props }: ItemProps) {
return (
<Item data-testid="context-menu-item" {...props}>
{children}
</Item>
);
}