UNPKG

@mskcc/carbon-react

Version:

Carbon react components for the MSKCC DSM

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