| 3 | import { ValueType, OptionTypeBase } from "react-select/src/types"; |
| 4 | |
| 5 | interface Props { |
| 6 | componentName: string; |
| 7 | graphs: String[]; |
| 8 | selectGraph: (componentName: string) => any; |
| 9 | } |
| 10 | |
| 11 | function displayName(component: string): string { |
| 12 | var pos = component.lastIndexOf('.') |
nothing calls this directly
no outgoing calls
no test coverage detected