Finished wwriting basic JS wrapper - suporting REST, datadiscovery and execute query. Met with Michal discused nexcxt steps and how to start building hooks wrapper. Began working on hooks wrapper. code example
Example: react hooks
componentDidUpdate(prevProps, prevState) {
if (prevState.count !== this.state.count) {
document.title = `You clicked ${this.state.count} times`;
}
}