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
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -322,6 +322,7 @@
322
322
|306|[Why do we use square brackets in useState?](#why-do-we-use-square-brackets-in-usestate?)|
323
323
|307|[What are the sources used for introducing hooks?](#what-are-the-sources-used-for-introducing-hooks)|
324
324
|308|[How do you access imperative API of web components?](#how-do-you-access-imperative-api-of-web-components)|
325
+
|309|[What is formik?](#what-is-formik)|
325
326
326
327
## Core React
327
328
@@ -5098,4 +5099,9 @@
5098
5099
4. Subscriptions in Rx.
5099
5100
5. Reducer components in ReasonReact.
5100
5101
308. ### How do you access imperative API of web components?
5101
-
Web Components often expose an imperative API to implement its functions. You will need to use a **ref** to interact with the DOM node directly if you want to access imperative API of a web component. But if you are using third-party Web Components, the best solution is to write a React component that behaves as a **wrapper** for your Web Component.
5102
+
Web Components often expose an imperative API to implement its functions. You will need to use a **ref** to interact with the DOM node directly if you want to access imperative API of a web component. But if you are using third-party Web Components, the best solution is to write a React component that behaves as a **wrapper** for your Web Component.
5103
+
309. ### What is formik?
5104
+
Formik is a small react form library that helps you with the three major problems,
0 commit comments