Eric Lee @sdust.dev · Sep 13

This is an interesting read on looking at React differently after working with Solid. It specifically mentions how different the rendering mechanism is. You need to tell Solid to re-render where React needs to be told not to. Blog post is in the comment.

0 likes 1 replies

?

Replies

Eric Lee · Sep 13

Like useEffect, you need to ensure you only pass the necessary dependency in the array otherwise it will either not re-render at the right time or keep re-rendering. alemtuzlak.hashnode.dev/ive-tried-s...