fleet/frontend/components/TableContainer/DataTable/LinkCell/LinkCell.tsx
Martavis Parker 384c987389
Removed all traces of Redux from the app! (#5287)
* clean up routes and useless components

* component clean up

* removed redux from routes

* rename file

* moved useDeepEffect hook with others

* removed redux, fleet, app_constants dirs; added types to utilities

* style cleanup

* typo fix

* removed unused ts-ignore comments

* removed redux packages!!!

* formatting

* fixed typing for simple search function

* updated frontend readme
2022-04-22 09:45:35 -07:00

38 lines
691 B
TypeScript

import React from "react";
// using browserHistory directly because "router"
// is difficult to pass as a prop
import { browserHistory } from "react-router";
import Button from "components/buttons/Button/Button";
interface ILinkCellProps {
value: string;
path: string;
title?: string;
classes?: string;
}
const LinkCell = ({
value,
path,
title,
classes = "w250",
}: ILinkCellProps): JSX.Element => {
const onClick = (): void => {
browserHistory.push(path);
};
return (
<Button
className={`link-cell ${classes}`}
onClick={onClick}
variant="text-link"
title={title}
>
{value}
</Button>
);
};
export default LinkCell;