Current File : /home/digitaw/www/wp-content/plugins/leadin/scripts/gutenberg/FormBlock/FormGutenbergPreview.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>
  );
}