import React from "react"; import { useDispatch } from "react-redux"; import { push } from "react-router-redux"; import Button from "components/buttons/Button/Button"; interface ILinkCellProps { value: string; path: string; title?: string; } const LinkCell = ({ value, path, title }: ILinkCellProps): JSX.Element => { const dispatch = useDispatch(); const onClick = (): void => { dispatch(push(path)); }; return ( ); }; export default LinkCell;