(s: string)
| 14 | import React from 'react'; |
| 15 | |
| 16 | function text(s: string): TokenFieldSegment { |
| 17 | return {type: 'text', text: s}; |
| 18 | } |
| 19 | |
| 20 | function token(s: string): TokenFieldSegment { |
| 21 | return {type: 'token', text: s}; |
no outgoing calls
no test coverage detected