Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adamsoffer/react-hubspot
A collection of React hooks for interacting with Hubspot APIs
https://github.com/adamsoffer/react-hubspot
form forms hubspot hubspot-api hubspot-form react react-hook react-hooks
Last synced: 8 days ago
JSON representation
A collection of React hooks for interacting with Hubspot APIs
- Host: GitHub
- URL: https://github.com/adamsoffer/react-hubspot
- Owner: adamsoffer
- Created: 2018-12-07T20:02:16.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T15:32:54.000Z (about 2 years ago)
- Last Synced: 2024-12-08T23:10:31.105Z (27 days ago)
- Topics: form, forms, hubspot, hubspot-api, hubspot-form, react, react-hook, react-hooks
- Language: JavaScript
- Size: 479 KB
- Stars: 24
- Watchers: 3
- Forks: 8
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Hubspot [![Build Status](https://travis-ci.org/adamsoffer/react-hubspot.svg?branch=master)](https://travis-ci.org/adamsoffer/react-hubspot)
A collection of React hooks for interacting with Hubspot APIs
## Installation
```
npm install --save react-hubspot
```## Usage
```jsx
import { useForm } from 'react-hubspot'export default () => {
const { data, isLoading, isError, handleSubmit } = useForm({
portalId: '',
formId: ''
})return (
)
}
```