0.0.4 • Published 7 years ago

rcforms v0.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Build Status

rcforms

rcforms is a small React library to help build forms.

Installation

npm install --save rcforms

Usage

import Form, {TextInput} from 'rcforms';

class MySweetForm extends Component {
  render () {
    return (
      <h2>My Sweet Form</h2>
      <Form>
        <label for="greeting">How Are You?</label>
        <TextInput name="greeting"/>
      </Form>
    );
  }
}

export default MySweetForm;
0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago