(id: string | number)
| 158 | const [expandedId, setExpandedId] = React.useState<ExpandedId>('flat'); |
| 159 | |
| 160 | const onAccordionPress = (id: string | number) => |
| 161 | setExpandedId(expandedId === id ? undefined : id); |
| 162 | |
| 163 | return ( |
| 164 | <TextInputAvoidingView> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…