React
Summary UI reacts to changes in the state. Very popular JavaScript frontend library(not framework because batteries are not included). Context, to manage props(properties injection) Hooks ref They let you use state and other React features without writing a class. It mainly uses to handle the state and side effects in react functional component. React Hooks are a way to use stateful functions inside a functional component. Hooks don’t work inside classes — they let you use React without classes React provides a few built-in Hooks like useState and useEffect....