mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
29 lines
596 B
TypeScript
29 lines
596 B
TypeScript
import React from "react";
|
|
import { useDispatch } from "react-redux";
|
|
import { push } from "react-router-redux";
|
|
|
|
import Button from "components/buttons/Button/Button";
|
|
|
|
interface ILinkCellProps<T> {
|
|
value: string;
|
|
path: string;
|
|
title?: string;
|
|
}
|
|
|
|
const LinkCell = (props: ILinkCellProps<any>): JSX.Element => {
|
|
const { value, path, title } = props;
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
const onClick = (): void => {
|
|
dispatch(push(path));
|
|
};
|
|
|
|
return (
|
|
<Button onClick={onClick} variant="text-link" title={title}>
|
|
{value}
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
export default LinkCell;
|