UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

22 lines (18 loc) 424 B
/** * MSKCC 2021, 2024 */ import * as React from 'react'; import PropTypes from 'prop-types'; const DashboardContent = _ref => { let { children } = _ref; return /*#__PURE__*/React.createElement("div", { className: "msk-dashboard--content__main" }, children); }; DashboardContent.displayName = 'DashboardContent'; DashboardContent.propTypes = { children: PropTypes.node }; export { DashboardContent };