(props: ITextFieldProps)
| 4 | import { ITextFieldProps } from '@msrvida/fluentui-react-cdn-typings/types'; |
| 5 | |
| 6 | export function TextField(props: ITextFieldProps) { |
| 7 | return ( |
| 8 | <base.fluentUI.TextField |
| 9 | onKeyUp={e => { |
| 10 | e.nativeEvent.stopImmediatePropagation(); |
| 11 | }} |
| 12 | {...props} |
| 13 | /> |
| 14 | ); |
| 15 | } |
nothing calls this directly
no test coverage detected