import { useTranslation } from "next-i18next";
import Container from "components/services/widget/container";
import Block from "components/services/widget/block";
import useWidgetAPI from "utils/proxy/use-widget-api";
export default function Component({ service }) {
const { t } = useTranslation();
const { widget } = service;
const { data: nextdnsData, error: nextdnsError } = useWidgetAPI(widget, "analytics/status");
if (nextdnsError) {
return ;
}
if (!nextdnsData) {
return (
);
}
if (!nextdnsData?.data?.length) {
return (
);
}
return (
{nextdnsData.data.map((d) => (
))}
);
}