strapi-google-analytics-dashboard
Version:
A plug-and-play Google Analytics 4 dashboard for Strapi 5.x. No code required — just install, configure your credentials, and instantly start tracking GA metrics directly in your admin panel.
14 lines (13 loc) • 495 B
JavaScript
import { jsx } from "react/jsx-runtime";
import { Loader } from "@strapi/design-system";
import styled from "styled-components";
const CenteredLoaderWrapper = styled.div`
display: flex;
justify-content: center;
align-items: center;
height: 100vh; /* Adjust the height as needed */
`;
const CenteredLoader = () => /* @__PURE__ */ jsx(CenteredLoaderWrapper, { children: /* @__PURE__ */ jsx(Loader, { children: "Loading..." }) });
export {
CenteredLoader as C
};