1.0.2 • Published 4 years ago

chatty-form v1.0.2

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

Getting Started

Install chatty-form and it's peer dependencies in your project from npm or yarn

npm install chatty-form framer-motion

# or

yarn add chatty-form framer-motion

Usage

This package contains only 4 components. A parent ChattyForm component and three input components Input, Select & MultiSelect which interact with the user.

Wrap any of the input component in <Chattyform/> to get started. Let's write the basic amount of code to get it up and running.

<ChattyForm>
  <Input
    name="name"
    question="Howdy! What's your name?"
    placeholder="Type your answer"
  />
</ChattyForm>

There you go! We are now successfully using chatty-form.


You can find detailed documentation on the website.