|
|
|
|
|
by crab_galaxy
501 days ago
|
|
> You need to use a separate library for CSS with React I mean you can just use CSS. Personally I use css modules. Not very buggy or react specific. > a separate state management library Yeah I do use tanstack query to manage server state. Does Svelte include something similar out of the box? Otherwise it’s
1) url/query param for app state
2) tanstack query for server state
3) hooks for reusable state or local component state. Not many library bugs with that approach and tbh I’ve never needed something like redux or zustand. |
|