All Projects → adamsoffer → react-hubspot

adamsoffer / react-hubspot

Licence: other
A collection of React hooks for interacting with Hubspot APIs

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to react-hubspot

react-use-hubspot-form
Embed HubSpot forms into your React components using hooks! Works with Create React App, Gatsby and other platforms.
Stars: ✭ 41 (+105%)
Mutual labels:  form, hubspot, hubspot-form, react-hooks
React Hook Form
📋 React Hooks for form state management and validation (Web + React Native)
Stars: ✭ 24,831 (+124055%)
Mutual labels:  forms, form, react-hooks
Formik
Build forms in React, without the tears 😭
Stars: ✭ 29,047 (+145135%)
Mutual labels:  forms, form, react-hooks
react-cool-form
😎 📋 React hooks for forms state and validation, less code more performant.
Stars: ✭ 246 (+1130%)
Mutual labels:  forms, form, react-hooks
React Form
⚛️ Hooks for managing form state and validation in React
Stars: ✭ 2,270 (+11250%)
Mutual labels:  forms, form, react-hooks
aurelia-form
Fun with forms! Form utilities to make stuff just a bit (a lot) easier.
Stars: ✭ 34 (+70%)
Mutual labels:  forms, form
react-formulation
Simple React form validation
Stars: ✭ 14 (-30%)
Mutual labels:  forms, form
formurai
Lightweight and powerfull library for declarative form validation
Stars: ✭ 49 (+145%)
Mutual labels:  forms, form
SuluFormBundle
Form Bundle for handling Dynamic and Symfony Forms in https://sulu.io
Stars: ✭ 51 (+155%)
Mutual labels:  forms, form
use-key-hook
React hook to handle all the key press.
Stars: ✭ 27 (+35%)
Mutual labels:  react-hooks, react-hook
react-hooks
🎣 React Hooks to get hooked on
Stars: ✭ 53 (+165%)
Mutual labels:  react-hooks, react-hook
react-use-comlink
Three ways to use Comlink web workers through React Hooks (and in a typesafe manner).
Stars: ✭ 39 (+95%)
Mutual labels:  react-hooks, react-hook
svelte-multistep-form
Svelte MultiStep Form like, this component is still in beta stage
Stars: ✭ 29 (+45%)
Mutual labels:  forms, form
use-algolia
Dead-simple React hook to make Algolia search queries. Supports pagination out of the box.
Stars: ✭ 29 (+45%)
Mutual labels:  react-hooks, react-hook
p01contact
Create contact forms by writing simple tags. Also a plugin for GetSimple and Pico CMS.
Stars: ✭ 15 (-25%)
Mutual labels:  forms, form
final-form-arrays
Array Mutators for 🏁 Final Form
Stars: ✭ 64 (+220%)
Mutual labels:  forms, form
react-search
This package will help you create a pretty good and beautiful search. And other related features
Stars: ✭ 17 (-15%)
Mutual labels:  forms, form
Forms
Tracking our progress moving all city paper and pdf forms online.
Stars: ✭ 14 (-30%)
Mutual labels:  forms, form
form-data-json
A zero dependency, cross browser library to easily get or set/manipulate form input values as/from a json object.
Stars: ✭ 37 (+85%)
Mutual labels:  forms, form
vue-use-form
✅ A Vue.js composition API function to validate forms
Stars: ✭ 97 (+385%)
Mutual labels:  forms, form

React Hubspot Build Status

A collection of React hooks for interacting with Hubspot APIs

Installation

npm install --save react-hubspot

Usage

import { useForm } from 'react-hubspot'

export default () => {
  const { data, isLoading, isError, handleSubmit } = useForm({
    portalId: '<PORTAL_ID>',
    formId: '<FORM_ID>'
  })

  return (
    <form onSubmit={handleSubmit}>
      <input name="email" type="text" placeholder="email" />
    </form>
  )
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].