Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 (



)
}
```