react-form-frenzy
v1.0.7
Published
> Say goodbye to tedious form filling with our Form Frenzy! It's dynamic, adapts to your inputs, has fun animations and clear error messages. Fill out forms with ease and enjoy the magic!
Downloads
2
Readme
Form Frenzy
Say goodbye to tedious form filling with our Form Frenzy! It's dynamic, adapts to your inputs, has fun animations and clear error messages. Fill out forms with ease and enjoy the magic!
Requirements
- Node version 16.18.1
Get Started
import { FormFrenzy, Standalone } from 'react-form-frenzy'
type Props = {}
const App: React.FC<Props> = () => {
return (
<>
<Standalone id="form-frenzy" />
<FormFrenzy
onSubmit={async (values) => {
console.log(values)
}}
id="form-frenzy"
/>
</>
)
}