()
| 6 | class ExpandComponent extends Component { |
| 7 | |
| 8 | render() { |
| 9 | const { className } = this.props; |
| 10 | const trCss = { |
| 11 | style: { |
| 12 | backgroundColor: this.props.bgColor |
| 13 | }, |
| 14 | className: classSet(className) |
| 15 | }; |
| 16 | return ( |
| 17 | <tr hidden={ this.props.hidden } width={ this.props.width } { ...trCss }> |
| 18 | <td colSpan={ this.props.colSpan }> |
| 19 | { this.props.children } |
| 20 | </td> |
| 21 | </tr> |
| 22 | ); |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | export default ExpandComponent; |
nothing calls this directly
no test coverage detected