(child)
| 2 | import { isTabPanel, isTab, isTabList } from './elementTypes'; |
| 3 | |
| 4 | function isTabChild(child) { |
| 5 | return isTab(child) || isTabList(child) || isTabPanel(child); |
| 6 | } |
| 7 | |
| 8 | export function deepMap(children, callback) { |
| 9 | return Children.map(children, (child) => { |
no outgoing calls
no test coverage detected
searching dependent graphs…