Skip to content

Commit 9e7215a

Browse files
committed
Add formik question
1 parent 183bf52 commit 9e7215a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,6 +322,7 @@
322322
|306| [Why do we use square brackets in useState?](#why-do-we-use-square-brackets-in-usestate?)|
323323
|307| [What are the sources used for introducing hooks?](#what-are-the-sources-used-for-introducing-hooks)|
324324
|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)|
325326

326327
## Core React
327328

@@ -5098,4 +5099,9 @@
50985099
4. Subscriptions in Rx.
50995100
5. Reducer components in ReasonReact.
51005101
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,
5105+
1. Getting values in and out of form state
5106+
2. Validation and error messages
5107+
3. Handling form submission

0 commit comments

Comments
 (0)