# leadin/11.3.75/scripts/shared/Common/LoadingBlock.tsx

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.3.75. 13 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.3.75/code/scripts/shared/Common/LoadingBlock.tsx
- Raw: https://pluginprobe.com/plugins/leadin/11.3.75/raw/scripts/shared/Common/LoadingBlock.tsx
- Modified: 2026-09-16T15:19:50+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.75/code/scripts/shared/Common/LoadingBlock.tsx#L10-L20`.

```tsx
import React from 'react';
import HubspotWrapper from './HubspotWrapper';
import UISpinner from '../UIComponents/UISpinner';
import { pluginPath } from '../../constants/leadinConfig';

export default function LoadingBlock() {
  return (
    <HubspotWrapper pluginPath={pluginPath}>
      <UISpinner size={50} />
    </HubspotWrapper>
  );
}

```
