@lucidtech/flyt-form
v2.0.9
Published
Flyt form React components
Readme
Flyt form React component library
Default React components used by Flyt forms.
Documentation
Storybook
You can see an interactive demo version of components at https://lucidtechai.github.io/flyt-form/.
Usage
This library expects react and react-dom to be present (peer dependencies).
The library also assume the Bootstrap Dashkit theme to be present for a substantial amount of its styling.
Using Node.js/NPM
npm install @lucidtech/flyt-form
import { Input } from '@lucidtech/flyt-form';
const Form = () => (
<form>
<label htmlFor="input">Input</label>
<Input id="input" />
</form>
)CDN/<script>
The library can be used as a UMD bundle from https://unpkg.com/@lucidtech/flyt-form
Development
For development on the library, you need a working Node.js environment with NPM installed.
git clone [email protected]:LucidtechAI/flyt-form.git && cd flyt-formnpm install
