Getting Started

TODO: Introduction...

Requirement#

To use react-cool-form, you must use react@16.8.0 or greater which includes hooks.

Installation#

This package is distributed via npm.

$ yarn add react-cool-form
# or
$ npm install --save react-cool-form

CDN#

If you're not using a module bundler or package manager. We also provide a UMD build which is available over the unpkg.com CDN. Simply use a <script> tag to add it after React CND links as below:

<script crossorigin src="https://unpkg.com/react/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom/umd/react-dom.production.min.js"></script>
<!-- react-cool-form comes here -->
<script crossorigin src="https://unpkg.com/react-cool-form/dist/index.umd.production.min.js"></script>