({ component })
| 3 | import PropTypes from 'prop-types'; |
| 4 | |
| 5 | function Info({ component }) { |
| 6 | return ( |
| 7 | <div> |
| 8 | <h5>{component.name}</h5> |
| 9 | <ArgsTable of={component} /> |
| 10 | </div> |
| 11 | ); |
| 12 | } |
| 13 | |
| 14 | function Props({ component, components = [] }) { |
| 15 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…