Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/team-griffin/redux-form-debounce-field


https://github.com/team-griffin/redux-form-debounce-field

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# redux-form-debounce-field
A variant of redux-form's `` component, but with a debounce feature that delay's the field's `onChange` event from triggering.

## Usage
```js
import DebounceField from 'redux-form-debounce-field';

const MyInput = ({
input,
meta,
...rest
}) => (

);

const MyForm = () => (

);
```

## Props
| Prop | Type | Description | Default |
| wait | `number` | The debounce delay | `250` |