UNPKG

@hisptz/react-ui

Version:

A collection of reusable complex DHIS2 react ui components.

28 lines 1 kB
import PropTypes from "prop-types"; import React from "react"; import AccessibilityAndSharing from "../../Shared/Componets/AccesibilityAndSharing"; import DataSources from "./Components/DataSources"; import Facts from "./Components/Facts"; import Introduction from "./Components/Introduction"; import RelatedDataElements from "./Components/RelatedDataElements"; export default function IndicatorGroupPage(props) { const id = props.id; return /*#__PURE__*/React.createElement("div", { style: { display: "flex", flexDirection: "column" } }, /*#__PURE__*/React.createElement(Introduction, { id: id }), /*#__PURE__*/React.createElement(DataSources, { id: id }), /*#__PURE__*/React.createElement(Facts, { id: id }), /*#__PURE__*/React.createElement(RelatedDataElements, null), /*#__PURE__*/React.createElement(AccessibilityAndSharing, { id: id, resourceType: "indicatorGroups" })); } IndicatorGroupPage.PropTypes = { id: PropTypes.string.isRequired };