| 10 | } from 'react-native'; |
| 11 | |
| 12 | interface Props extends ViewProps { |
| 13 | disabled?: boolean; |
| 14 | onPress: () => void; |
| 15 | text: string; |
| 16 | style?: StyleProp<ViewStyle>; |
| 17 | } |
| 18 | |
| 19 | export class Button extends React.Component<Props> { |
| 20 | _handlePress = () => { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…