React State Management #185325
Answered
by
MaxValueBuilder
PanthersHowl
asked this question in
npm
-
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.
Answered by
MaxValueBuilder
Jan 26, 2026
Replies: 1 comment
-
|
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.
0 replies
Answer selected by
PanthersHowl
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For app router (Next.js 13+), use these patterns by complexity:
Recommendation: URL state for fi…