(props)
| 3 | import { PropTypes } from 'react'; |
| 4 | |
| 5 | const Example = (props) => { |
| 6 | return ( |
| 7 | <div className="docs-example">{props.children}</div> |
| 8 | ); |
| 9 | }; |
| 10 | |
| 11 | Example.propTypes = { |
| 12 | children: PropTypes.any |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…