Become a member
Sign in
Julian Stahl
Julian Stahl

Julian Stahl

32 Following
29 Followers
  • Profile
  • Claps
  • Highlights

Highlighted by Julian Stahl

See more

From Tutorial: Speeding up GraphQL Mutations with optimistic UI by Jonas Helfer

If add the optimisticResponse to your code, you’ll notice that there’s no more delay between the time you hit return and the time the item shows up at the bottom of the list.

From I’m Breaking up with Higher Order Components. by David Atchley

ops.re…handleScroll);
}

handleScroll = e => {
this.setState({
x: window.scrollX,
y: window.scrollY
})
};

render() {
const { x, y } = this.state;
return this.props.render(x…

Claps from Julian Stahl

See more

Introducing redux-query

Ryan Ashcraft