//prettier-ignore import React from 'react'; import { OverflowMenu, OverflowMenuItem } from '@carbon/react'; interface MenuItem { id: string; label: string; action?: () => void; } interface Props { items: MenuItem[]; } const TestComponent = ({ items }: Props) => { return (