This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

react-forms-crane

2.1.1 • Public • Published

React Forms-crane 🏗️ Build Status

npm bundle size GitHub package.json version (branch) GitHub package.json version (branch)

Check the library on Storybook

Installation

Latest

$ npm install react-forms-crane

With hooks

$ npm install react-forms-crane@hooks

How to use

import React from "react";
import Form, { Text, Submit } from "react-forms-crane";
 
function App() {
    const onSubmit = ({ firstName, lastName }) => {
        alert(`Hello ${firstName} ${lastName}!`);
    };
 
    return (
        <Form onSubmit={onSubmit}>
            <Text name="firstName" placeholder="Insert your first name" />
            <Text name="lastName" placeholder="Insert your last name" />
            <Submit />
        </Form>
    );
}
 
export default App;

Available Fields

  • Text
  • Checkbox
  • RadioButton
  • Password
  • Select
  • TextArea
  • File
  • Button
  • Submit
  • Reset

Missing fields

  • Search
  • Number
  • Email
  • Hidden
  • Color
  • Image
  • Range
  • Url
  • Date
  • DateTime
  • DateTimeLocal
  • Time
  • Month
  • Week

Other elements

  • Fieldset
  • Legend

Package Sidebar

Install

npm i react-forms-crane

Weekly Downloads

2

Version

2.1.1

License

MIT

Unpacked Size

176 kB

Total Files

24

Last publish

Collaborators

  • damiano.carradori