theforeman/foreman

View on GitHub
webpack/assets/javascripts/react_app/components/common/table/formatters/hostsCountCellFormatter.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import HostsCountCell from '../components/HostsCountCell';

const hostsCountCellFormatter = controllerSingular => (
  value,
  { rowData: { name } }
) => (
  <HostsCountCell controller={controllerSingular} name={name}>
    {value}
  </HostsCountCell>
);

export default hostsCountCellFormatter;