(square, colIndex)
| 469 | return <Box key={rowIndex} flexDirection="row" marginLeft={-1}>{row.map(_temp4)}</Box>; |
| 470 | } |
| 471 | function _temp4(square, colIndex) { |
| 472 | if (square.categoryName === "Free space") { |
| 473 | return <Text key={colIndex} dimColor={true}>{"\u26F6 "}</Text>; |
| 474 | } |
| 475 | if (square.categoryName === RESERVED_CATEGORY_NAME) { |
| 476 | return <Text key={colIndex} color={square.color}>{"\u26DD "}</Text>; |
| 477 | } |
| 478 | return <Text key={colIndex} color={square.color}>{square.squareFullness >= 0.7 ? "\u26C1 " : "\u26C0 "}</Text>; |
| 479 | } |
| 480 | function _temp3(cat_1) { |
| 481 | return cat_1.name === RESERVED_CATEGORY_NAME; |
| 482 | } |
nothing calls this directly
no outgoing calls
no test coverage detected