Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gillstrom/deku-form
Form components for deku
https://github.com/gillstrom/deku-form
Last synced: 26 days ago
JSON representation
Form components for deku
- Host: GitHub
- URL: https://github.com/gillstrom/deku-form
- Owner: gillstrom
- License: mit
- Created: 2015-09-07T12:17:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-16T12:12:13.000Z (over 8 years ago)
- Last Synced: 2024-04-14T12:02:52.310Z (9 months ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 9
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
- awesome-deku - deku-form - A collection of deku components for working with forms (Works with Browserify) (Components)
README
# deku-form
> Form components for deku
## Install
```
$ npm install --save deku-form
```## Usage
```js
import {Form, InputField} from 'deku-form';function handle(data, form) {
console.log(data);
//=> 'username=foo&password=unicorn'
}export function render() {
return (
Sign in
);
}
```## License
MIT © [Kevin Mårtensson](http://github.com/kevva)