mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-19 17:49:24 +03:00
21 lines
406 B
JavaScript
21 lines
406 B
JavaScript
import { FocusableItem } from '@szhsin/react-menu';
|
|
|
|
import Link from './link';
|
|
|
|
function MenuLink(props) {
|
|
return (
|
|
<FocusableItem>
|
|
{({ ref, closeMenu }) => (
|
|
<Link
|
|
{...props}
|
|
ref={ref}
|
|
onClick={({ detail }) =>
|
|
closeMenu(detail === 0 ? 'Enter' : undefined)
|
|
}
|
|
/>
|
|
)}
|
|
</FocusableItem>
|
|
);
|
|
}
|
|
|
|
export default MenuLink;
|