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