UNPKG

react-jw-player

Version:

A React component for launching JW Player instances on the client.

14 lines (12 loc) 262 B
class MockComponent { constructor(props) { this.props = props; this.setStateCalled = false; this.state = props.initialState; } setState(newState) { this.setStateCalled = true; this.state = newState; } } export default MockComponent;