Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 537 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 537 Bytes

@rsuite/formik

Formik-compatible React Suite form components

DISCLAIMER

This package is still under development (on beta branch) and doesn't have a stable release yet, please use with caution.

Usage

import { Formik, Form, Field } from "formik";
import { Input } from "@rsuite/formik";

render(
  <Formik
    initialValues={{
      name: "",
    }}
  >
    <Form>
      <Field name="name" component={Input} />
    </Form>
  </Formik>
);

License

MIT © React Suite team