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 { widget } = service; const { data: statisticsData, error: statisticsError } = useWidgetAPI(widget, "statistics"); if (statisticsError) { return ; } if (!statisticsData) { return ( ); } return ( {statisticsData.documents_inbox !== undefined && } ); }