import { CellContext } from '@tanstack/react-table'; import React from 'react'; import * as S from './Table.styled'; // eslint-disable-next-line @typescript-eslint/no-explicit-any const ExpanderCell: React.FC> = ({ row }) => ( {row.getIsExpanded() ? ( ) : ( )} ); export default ExpanderCell;