import styled from '@emotion/styled'; import { useRecoilValue } from 'recoil'; import { visibleTableColumnsState } from '../states/tableColumnsState'; import { ViewFieldContext } from '../states/ViewFieldContext'; import { CheckboxCell } from './CheckboxCell'; import { EntityTableCell } from './EntityTableCell'; const StyledRow = styled.tr<{ selected: boolean }>` background: ${(props) => props.selected ? props.theme.background.secondary : 'none'}; `; export function EntityTableRow({ rowId }: { rowId: string }) { const columns = useRecoilValue(visibleTableColumnsState); return ( {columns.map((column, columnIndex) => { return ( ); })} ); }