Formik

How to Use Formik

Formik has just released the version 2.x, which is a major release that has some breaking changes in its API. It offers some additional features like checkboxes support, select multiple fields, and most importantly, React Hooks integration πŸŽ‰.

In this tutorial, we’re going to learn how to use this awesome library that helps you to easily build your forms in React without tears 😭.

Getting Started

First, you need to have a React application. You can use an existing one, or create a new one with create-react-app by running this command.

Read more