Maxime Mangel

Results 1077 comments of Maxime Mangel

When passing children via props because are passing a list of children react ask us to provide a key to each child that's while we are using `Children.toArray`. `Children.toArray` make...

I didn't remember if we had an overload for `ReactElement seq` or not. But seems logic to have, well then we can add the check only under this overload I...

Sorry, the discussion in the talk was about using `ofList` instead of `yield!`. So let's remove that from, the current discussion.

Problem from using Semantic UI, is the same as with bootstrap. If you include their JavaScript code in your application then you lose a bit of control over your application...

Hello @Dzoukr, in one of my project I made a custom/fixed version of `UseElmish` I never had the chance to really test it but we are using it successfully in...

Also just as a reminder for React refresh to work you need to only export ReactComponent from the module. So mark `init`, `update`, or any other helpers function/values as private....

@landy I think that when using Webpack you need to `@pmmmwh/react-refresh-webpack-plugin` because Webpack doesn't have ReactRefresh out of the box. It only have HMR (Hot module replacement) which can be...

> One observation here. I found that in this @MangelMaxime version of UseElmish, when I change the dependencies, the full render is not triggered (for original UseElmish it works). Will...

@Dzoukr If the dependencies changed in this case we expect the hook to be recreated from scratch? As if the `useElmish` was invoked for the first time right? Asking for...

After watching some talks about React, using `React.useEffect` is not actually the right way of implementing the Elmish hooks. It "works" but it can lead to some problem/un-expected behaviour especially...