({ title, children })
| 16 | import { withRouter } from 'lib/withRouter'; |
| 17 | |
| 18 | const PIGRow = ({ title, children }) => ( |
| 19 | <div> |
| 20 | <div className={styles.header}>{title}</div> |
| 21 | <div className={styles.row}>{children}</div> |
| 22 | </div> |
| 23 | ); |
| 24 | |
| 25 | @withRouter |
| 26 | class PIG extends React.Component { |
nothing calls this directly
no outgoing calls
no test coverage detected