| 3 | import { ShowcaseButton, ShowcaseLabel } from '@gorhom/showcase-template'; |
| 4 | |
| 5 | interface ButtonProps { |
| 6 | label: string; |
| 7 | labelStyle?: TextStyle; |
| 8 | style?: ViewStyle; |
| 9 | onPress: () => void; |
| 10 | } |
| 11 | |
| 12 | const ButtonComponent = ({ |
| 13 | label, |
nothing calls this directly
no outgoing calls
no test coverage detected