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