(props)
| 12 | |
| 13 | class Table extends Component { |
| 14 | constructor (props) { |
| 15 | super(props); |
| 16 | this.state = { |
| 17 | index: props.pagination ? props.pagination.props.index : 1, |
| 18 | data: props.data, |
| 19 | sort: {}, |
| 20 | total: null |
| 21 | }; |
| 22 | |
| 23 | this.onBodyScroll = this.onBodyScroll.bind(this); |
| 24 | } |
| 25 | |
| 26 | componentDidMount () { |
| 27 | this.setHeaderWidth(); |
nothing calls this directly
no outgoing calls
no test coverage detected