# Build a ConvertKit Form with React

> Formspree Docs · Using the CLI · Updated July 14, 2023

Learn how build a React form to create subscribers in your [**ConvertKit**](https://convertkit.com/) account.

## **1\. Prepare your project**

Install the React helper library in your project:

```
npm install @formspree/react
```

Then add the `FormspreeProvider` to your top-level app component. For example, if you are using Next.js, here's what your `pages/_app.js` file might look like:

```jsx
import { FormspreeProvider } from '@formspree/react';
function App({ Component, pageProps }) {
  return (
    <FormspreeProvider project="{your-project-id}">
      <Component {...pageProps} />
    </FormspreeProvider>
  );
}
export default App;
```

## **2\. Configure your form**

In your `formspree.json` file, add an opt-in form. Note that the `tags` you supply must already exist in your ConvertKit account.

```javascript
{
  "forms": {
    "optInForm": {
      "name": "Opt-In Form",
      "actions": [{ 
        "app": "convertkit", 
        "type": "applyTags",
        "tags": ["Newsletter"]
      }]
    }
  }
}
```

Then, deploy your changes to StaticKit:

```
formspree deploy -k <your-deploy-key>
```

You'll be prompted with instructions on how to save your ConvertKit API secret.  
**Learn more about ConvertKit actions →**

## **3\. Build your form**

Wire up your form component using the `useForm` hook:

```jsx
import React from 'react';
import { useForm, ValidationError } from '@formspree/react';
function OptInForm() {
  const [state, handleSubmit] = useForm("optInForm");
  if (state.succeeded) {
    return <p>Thanks for joining!</p>;
  }
  return (
    <form onSubmit={handleSubmit}>
      <label htmlFor="email">
        Email Address
      </label>
      <input
        id="email"
        type="email" 
        name="email"
      />
      <ValidationError 
        prefix="Email" 
        field="email"
        errors={state.errors} 
      />
      <button type="submit" disabled={state.submitting}>
        Sign Up
      </button>
    </form>
  );
}
export default OptInForm;
```

**[Learn more about the Formspree CLI](/articles/using-the-cli/the-formspree-cli/) →**  
**[Learn more about Formspree and React](/articles/working-with-react/the-formspree-react-library/) →**
