I want to pass data between next js pages , large amount of user filled data including image . How can I achieve that?
I tried to look for nextjs docs but I couldn’t find any solution
I want to pass data between next js pages , large amount of user filled data including image . How can I achieve that?
I tried to look for nextjs docs but I couldn’t find any solution
2
Answers
A small number of parameters are passed through router. If it is a picture, it is better to use vuex
You can either use global React Context or implement a state management library like Redux or Zustand etc.