@progress/sitefinity-nextjs-sdk
Version:
Provides OOB widgets developed using the Next.js framework, which includes an abstraction layer for Sitefinity communication. Additionally, it offers an expanded API, typings, and tools for further development and integration.
6 lines (5 loc) • 451 B
JavaScript
'use-client';
import { jsx as _jsx } from "react/jsx-runtime";
export function LoadingIndicator() {
return (_jsx("div", { id: "sf-search-results-loading-indicator", style: { display: 'none' }, children: _jsx("div", { className: "d-flex justify-content-center my-5", children: _jsx("div", { className: "spinner-border text-primary my-5", role: "status", children: _jsx("span", { className: "visually-hidden", children: "Loading..." }) }) }) }));
}