Introduction of React
Introduction of React · Developed and maintained by Facebook and Instagram. · A JavaScript library for creating user interface. · Serves as the view of MVC architecture. · Suitable for large web application which use data and change over the time without reloading the entire page. · React Native caters developing mobile application for various platform and React VR caters developing VR application/ · Aims at Speed, Simplicity and Scalability. Notable features · One-Way data flow. o Single source of truth-data is originated and kept in one place, data is immutable. o Data flow from the parent component to the child component. o Action flow from chi...