# leadin/11.1.13/scripts/elementor/Common/ConnectPluginBanner.tsx

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.1.13. 23 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.1.13/code/scripts/elementor/Common/ConnectPluginBanner.tsx
- Raw: https://pluginprobe.com/plugins/leadin/11.1.13/raw/scripts/elementor/Common/ConnectPluginBanner.tsx
- Modified: 2024-05-23T13:10:40+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.1.13/code/scripts/elementor/Common/ConnectPluginBanner.tsx#L10-L20`.

```tsx
import React from 'react';
import ElementorBanner from './ElementorBanner';
import { __ } from '@wordpress/i18n';

export default function ConnectPluginBanner() {
  return (
    <ElementorBanner>
      <b
        dangerouslySetInnerHTML={{
          __html: __(
            'The HubSpot plugin is not connected right now To use HubSpot tools on your WordPress site, %1$sconnect the plugin now%2$s'
          )
            .replace(
              '%1$s',
              '<a class="leadin-banner__link" href="admin.php?page=leadin&bannerClick=true">'
            )
            .replace('%2$s', '</a>'),
        }}
      ></b>
    </ElementorBanner>
  );
}

```
