@hisptz/react-ui
Version:
A collection of reusable complex DHIS2 react ui components.
11 lines • 439 B
JavaScript
import i18n from "@dhis2/d2-i18n";
import React from "react";
import RelatedIndicatorTable from "../../../../Shared/Componets/RelatedIndicatorTable";
export default function RelatedIndicator(_ref) {
let {
id
} = _ref;
return /*#__PURE__*/React.createElement("div", null, /*#__PURE__*/React.createElement("h3", null, i18n.t("Related Indicators"), " "), /*#__PURE__*/React.createElement(RelatedIndicatorTable, {
id: id
}));
}