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