How to use the @build-tracker/comparator.CellType.TOTAL_DELTA function in @build-tracker/comparator

To help you get started, we’ve selected a few @build-tracker/comparator examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github paularmstrong / build-tracker / packages / app / src / components / ComparisonTable / ComparisonTable.js View on Github external
color={theme.colorMidnight}
            key={cellIndex}
            linked
            onToggle={this._handleToggleAllArtifacts}
            style={cellStyles && [...cellStyles, styles.stickyColumnStickyHeader]}
          />
        );
      case CellType.TEXT:
        return (
          
        );
      case CellType.TOTAL_DELTA:
      case CellType.DELTA: {
        // $FlowFixMe
        const deltaCell = (cell: BT$DeltaCellType);
        return (
          
        );
      }
github paularmstrong / build-tracker / src / app / src / components / ComparisonTable / GroupRow.tsx View on Github external
case CellType.GROUP: {
        return (
          
        );
      }
      case CellType.TOTAL:
        return ;
      case CellType.TOTAL_DELTA:
        return ;
    }
  };