efcsydney/efcsydney-roster

View on GitHub
client/src/modules/index/utils.js

Summary

Maintainability
A
0 mins
Test Coverage
export function getOptions(names) {
  return names
    .map(name => ({ value: name, label: name }))
    .filter(name => name.label !== 'Combined Service');
}