({ children })
| 60 | }, |
| 61 | }); |
| 62 | const DetailsModal = ({ children }) => { |
| 63 | const { colors } = useTheme(); |
| 64 | const styles = createStyles(colors); |
| 65 | |
| 66 | return ( |
| 67 | <View style={styles.modalView}> |
| 68 | <View style={styles.modalContainer}>{children}</View> |
| 69 | </View> |
| 70 | ); |
| 71 | }; |
| 72 | |
| 73 | const DetailsModalHeader = ({ style, ...props }) => { |
| 74 | const { colors } = useTheme(); |
nothing calls this directly
no test coverage detected