# leadin/11.3.65/scripts/gutenberg/FormBlock/FormGutenbergPreview.tsx

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.3.65. 15 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.3.65/code/scripts/gutenberg/FormBlock/FormGutenbergPreview.tsx
- Raw: https://pluginprobe.com/plugins/leadin/11.3.65/raw/scripts/gutenberg/FormBlock/FormGutenbergPreview.tsx
- Modified: 2026-07-10T16:14:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/leadin/11.3.65/code/scripts/gutenberg/FormBlock/FormGutenbergPreview.tsx#L10-L20`.

```tsx
import React, { Fragment } from 'react';
import { pluginPath } from '../../constants/leadinConfig';
import UIImage from '../UIComponents/UIImage';

export default function FormGutenbergPreview() {
  return (
    <Fragment>
      <UIImage
        alt="Create a new Hubspot Form"
        src={`${pluginPath}/public/assets/images/hubspot-form.png`}
      />
    </Fragment>
  );
}

```
