0.3.3 • Published 4 years ago

form-lit v0.3.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

form-lit

Lit form library written in React

Install

npm install form-lit  OR  yarn add form-lit

Example

import React from 'react';
import ReactDOM from 'react-dom';
import { Form, Input } from 'form-lit';

const App = () => {
  const handleSubmit = form => {
    console.log(form);
    // -> { my-input: "dynamic value" }
  };

  return (
    <Form onSubmit={handleSubmit}>
      <Input type={'text'} label="Default Input" name="my-input" />

      <button type="submit">Submit</button>
    </Form>
  );
};

ReactDOM.render(<App />, document.getElementById('root'));

Have a look inside the example/ directory to see the development kitchensink application using a multitude of available form fields.

Local development

  1. Clone this repository and install it's dependencies

    # Using npm
    npm install
    
    # Using yarn
    yarn install
  2. Validate project setup

    # Using npm
    npm run validate
    
    # Using yarn
    yarn validate
  3. Navigate into the example/ folder to start your local development environment.

    cd ./example
    
    # Using npm
    npm install && npm start
    
    # Using yarn
    yarn install && yarn start

    This will start a simple React application powered by Parcel on http://localhost:1234.


This project was bootstrapped with jvdx.

0.3.3

4 years ago

0.3.2

4 years ago

0.3.1

4 years ago

0.3.0

4 years ago

0.2.8

4 years ago

0.2.7

4 years ago

0.2.6

4 years ago

0.2.5

4 years ago

0.2.4

4 years ago

0.2.3

4 years ago

0.2.2

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago