()
| 76 | <KSelect.Value<AspectRatio | "auto">> |
| 77 | {(state) => { |
| 78 | const text = () => { |
| 79 | const option = state.selectedOption(); |
| 80 | return option === "auto" ? "Auto" : ASPECT_RATIOS[option].name; |
| 81 | }; |
| 82 | return <>{text()}</>; |
| 83 | }} |
| 84 | </KSelect.Value> |
no outgoing calls
no test coverage detected