function formatMetric()

in front-end-resources/react-meeting/src/containers/MeetingMetrics/index.tsx [10:12]


function formatMetric(metric: number | null) {
  return metric ? `${metric} Kbps` : null;
}