({ colorClassName }: { colorClassName?: string })
| 44 | } |
| 45 | |
| 46 | function MyStack({ colorClassName }: { colorClassName?: string }) { |
| 47 | return ( |
| 48 | <Stack.Navigator |
| 49 | rootScreen={<MyScreen colorClassName={colorClassName} />} |
| 50 | /> |
| 51 | ); |
| 52 | } |
| 53 | |
| 54 | function MyScreen({ |
| 55 | colorClassName = "bg-white", |
nothing calls this directly
no outgoing calls
no test coverage detected