/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; import { useHistory } from 'react-router-dom'; import { Button, ButtonProps } from '@awsui/components-react'; type LinkButtonProps = ButtonProps & { href: string; }; const LinkButton = (props: React.PropsWithChildren): React.ReactElement => { const history = useHistory(); const handleClick = React.useCallback( (event: CustomEvent) => { // don't intercept the click if the user is trying to open it in a new tab or window if (!event.detail.ctrlKey && !event.detail.metaKey) { event.preventDefault(); history.push({ pathname: props.href, app: props.app }); } }, [history, props.href, props.app] ); return ( ); }; export default LinkButton;