(props)
| 11 | } |
| 12 | |
| 13 | constructor(props) { |
| 14 | super(props) |
| 15 | const { children, render, ...sizeMeConfig } = props |
| 16 | this.createComponent(sizeMeConfig) |
| 17 | this.state = { |
| 18 | size: { |
| 19 | width: undefined, |
| 20 | height: undefined, |
| 21 | }, |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | componentDidUpdate(prevProps) { |
| 26 | const { |
nothing calls this directly
no outgoing calls
no test coverage detected