1.

What are hooks in react native?

Answer»

Hooks are a new enhancement in React 16.8. They allow to UTILIZE the state and other react features without involving the class. The major agenda behind using the hooks are to handle the SIDE effects in the functional components of react.

38. What is the difference between HOT Reloading and Live Reloading in React Native?
Hot ReloadingLive Reloading
It only refreshes the files that were changed without losing the state of the APP.It reloads or refreshes the entire app when a file changes.
It DISPLAYS the code changes according to new code changes without restarting the app from start.It requires the restart of the app in case of any change in the code


Discussion

No Comment Found