(props: any)
| 27 | export class FakeTextureElement extends React.Component { |
| 28 | _fakeTexture: FakeTexture; |
| 29 | constructor(props: any) { |
| 30 | super(props); |
| 31 | this._fakeTexture = new FakeTexture(props); |
| 32 | } |
| 33 | getRootRef() { |
| 34 | return this._fakeTexture; |
| 35 | } |
nothing calls this directly
no outgoing calls
no test coverage detected