Files
medicalalert-web-reloaded/wp/wp-content/plugins/leadin/scripts/shared/Common/LoadingBlock.tsx
2024-09-25 09:25:31 -04:00

13 lines
341 B
TypeScript

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>
);
}