DEV Community

Discussion on: What is Redux, really? – Part 3

Collapse
 
iamnotstatic profile image
Abdulfatai Suleiman

Yeah for larger application, but for smaller application I will recommend using hooks and context api

Collapse
 
cyberhck profile image
Nishchal Gautam

as long as you don't need SSR, it works, but as soon as you want server side rendering, you want a global state management.

Collapse
 
tomekbuszewski profile image
Tomek Buszewski

Hey Abdulfatai,

for smaller apps, if they are properly written, there is often no need for a state management at all. I've written about this in previous parts of the series. Even doing a little props drilling is sometimes better than a logical overhead with additional tools, like React's context or Redux.

Collapse
 
iamnotstatic profile image
Abdulfatai Suleiman

Alright that's fine