React State Management #185325
-
Select Topic AreaQuestion BodyWhat's the best way to share state between pages in Next.js 15? useState doesn't persist. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
For app router (Next.js 13+), use these patterns by complexity:
Recommendation: URL state for filters/tabs, Zustand for UI state, server actions for data. |
Beta Was this translation helpful? Give feedback.
-
|
|
Beta Was this translation helpful? Give feedback.
For app router (Next.js 13+), use these patterns by complexity:
Recommendation: URL state for fi…