You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -324,6 +324,8 @@
324
324
|308|[How do you access imperative API of web components?](#how-do-you-access-imperative-api-of-web-components)|
325
325
|309|[What is formik?](#what-is-formik)|
326
326
|310|[What are typical middleware choices for handling asynchronous calls in Redux?](#what-are-typical-middleware-choices-for-handling-asynchronous-calls-in-redux)|
|312|[Describe about data flow in react?](#describe-about-data-flow-in-react)|
327
329
328
330
## Core React
329
331
@@ -5109,3 +5111,7 @@
5109
5111
5110
5112
310. ### What are typical middleware choices for handling asynchronous calls in Redux?
5111
5113
Some of the popular middleware choices for handling asynchronous calls in Redux eco system are `Redux Thunk, Redux Promise, Redux Saga`.
5114
+
311. ### Is browsers understand JSX code?
5115
+
No, browsers can't understand JSX code. You need a transpiler to convert your JSX to regular Javascript that browsers can understand. The most widely used transpiler right now is Babel.
5116
+
312. ### Describe about data flow in react?
5117
+
React implements one-way reactive data flow using props which reduce boilerplate and is easier to understand than traditional two-way data binding.
0 commit comments