DEV Community

Discussion on: Becoming Friends with React JS

 
dance2die profile image
Sung M. Kim

You're welcome there, Hemant :)

After learning the Context API, you need to be careful on setting it up on NextJS, as it's an SSR (server-side rendering) framework. On each page refresh, context state is gone.

So you'd need to set up the context in what's called a special file, pages/_app.js, which you can read about here -> reacttricks.com/sharing-global-dat...

Thread Thread
 
hemant profile image
Hemant Joshi

YesπŸ€”, will take care of it