import { CellContext } from '@tanstack/react-table'; import React from 'react'; import * as S from './Table.styled'; const ExpanderCell: React.FC> = ({ row }) => { return ( {row.getIsExpanded() ? ( ) : ( )} ); }; export default ExpanderCell;