Files
portainer/app/react/components/Link.tsx
T
Josiah Clumont 484af3c2c8 feat(environment group) detail view update v1 [c9s-206] (#2722)
Last system-test failure is also on dev
2026-06-02 16:59:18 +12:00

26 lines
604 B
TypeScript

import { PropsWithChildren, AnchorHTMLAttributes } from 'react';
import { UISrefProps, useSref } from '@uirouter/react';
interface Props extends AnchorHTMLAttributes<HTMLAnchorElement> {
'data-cy': string;
}
export function Link({
children,
'data-cy': dataCy,
to,
params,
options,
title,
...props
}: PropsWithChildren<Props> & UISrefProps) {
const { onClick, href } = useSref(to, params, options);
return (
// eslint-disable-next-line react/jsx-props-no-spreading
<a onClick={onClick} href={href} data-cy={dataCy} title={title} {...props}>
{children}
</a>
);
}