ama
ama copied to clipboard
Ask me anything!
I'm writing a login system. I would really like to have it properly tested but basically every action starts by sending an encrypted package to a 3rd party login service...
Hey, Kent! What's in your opinion the most critical skills for middle developer?
Hi @kentcdodds :) I've started to work with the context api in combination with the render props pattern. Unfortunately I'm running into an rerender issue.. For example I have 3...
Hi Kent, I've been playing around with hooks recently and realized you can pass a function as an updater to `useState` - setter Something odd happens when I'm making use...
Not really a code help, but more of a suggestion for a next article! ```js const [a,b,c] = useMyHook() ``` vs ```js const {a,b,c} = useMyHook() ``` When to use...
Hi Kent! Thanks for replying to my other question 😄 I am trying to understand what would be the best way to abstract some components which use a custom hook....
This is related to #572. What other kinds of things do you optimize for in your workshop marketing? How did you come to the price? What determines when/how often you...
Lots of people are wondering about [my tweet](https://twitter.com/kentcdodds/status/1118898485770825729) and so I think I should take time to explain what I mean.
Kent, I loved the writeup you did regarding [this tweet](https://twitter.com/kentcdodds/status/1102647400915582981) of yours, in which useReducer was the solution to timing problems. But I wonder if it cleaned things up far...
First off, really enjoy using react-testing-library, so thanks for creating such an awesome library! Following your recommendations on https://www.youtube.com/watch?v=h7ukDItVN_o, I have opted to write integration tests for redux components. I...