Clear users from state

Search.js

<button className='btn btn-light btn-block' onClick={clearUsers}>
    Clear
</button>

App.js

clearUsers = () => this.setState({ users: [], loading: false });
Was this page helpful?