Date and time note was created$= dv.current().file.ctime
Date and time note was modified$= dv.current().file.mtime

Parents : React

The flow of data in react is unidirectional i.e data flows and completes its cycle in one direction , this is derived from flux architecture incomplete

React implements it using 4 major components

  • View
  • Actions
  • Dispatcher
  • Store

The View is basically the component tree in a modern application. For instance, React is able to implement such a View. A user can interact with the View in order to trigger an Action eventually (e.g. a click on a button). An Action would encapsulate all the necessary information to update the state in the Store(s). The Dispatcher on the way delegates the Actions to the Store(s). Then, the new state would be propagated from the Store(s) to the View to update them. The last part closes the loop of the unidirectional data flow.

Related

References

Footnotes