Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jisaacks/react-simple-serial-form

A simple form that auto serializes on submit
https://github.com/jisaacks/react-simple-serial-form

Last synced: 22 days ago
JSON representation

A simple form that auto serializes on submit

Awesome Lists containing this project

README

        

# React Simple Serial Form

A very simple form wrapper that auto serializes when submitted.

For more features check out: [React Serial Forms](https://github.com/LevInteractive/react-serial-forms)

## Install

```shell
npm install react-simple-serial-form --save
```

## Usage

```javascript
import React, { Component } from 'react';
import SimpleSerialForm from 'react-simple-serial-form';

export default class SearchForm extends Component {

dataHandler(data) {
console.log("Search:", data);
}

render() {
return (


Search

);
}

};
```