Harry Hedger

Results 21 comments of Harry Hedger

The array destructuring pattern came about so people could name what's returned from hooks whatever they want. Consider the `useState` hook. Imagine if it returned `{ state, setState }`. There'd...

doesn't look like that sandbox has any example code anymore. did you figure it out?

Either they'd have to set up ts compiling in their pipeline, or you'd have to compile it before publishing, but that shouldn't stop you from sharing the components with them....

What's your question exactly? What are you trying to do?

What tax did you experience? I was a bit of a Typescript/Flow skeptic, but I will never again do a project in plain Javascript. Maybe I can help you with...

@Gacnt - Did you have any luck figuring this out? I'm trying to figure out the best way to use session storage when using the `ws` websocket library.

It is possible to add replies to comments. `client.reactions.addChild(kind, reaction, data, options)` is how you do it with the client. Activities within a feed should also have access to a...

Hey @jfairbank So I ran into an issue with testing error cases with `testSaga` as well. It seems that if you take a saga, pass it to a function, and...

thank you so much @vclav. this was exactly the issue I was having. I was immediately calling throw instead of calling next first. sweet. I can use the lib now!

Looks like the `/app` path is hardcoded in the generators. It wouldn't be hard for you to make the `screen` generator set it based on an optional `--appPath` flag or...