Tuesday, 10 October 2017

What is State Management?

State management means to preserve the state of a control, web page etc.HTTP is a stateless protocol by nature. So, State management is a mechanism to preserve state (i.e. state of a webpage, a control or an object etc.) between subsequent requests to server from one or more clients.

No comments:

Post a Comment

React Hooks - custom Hook

  v CustomHook Ø React allows us to create our own hook which is known as custom hook. Example – 1 localStorage Demo Step-1 Create ...