import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; /** * @ngdoc react * @name ContentBlockInner * @description Inner Component to hold content block of a side panel */ export const ContentBlockInner: React.StatelessComponent = ({children, className, right, grow}) => (
{children}
); ContentBlockInner.propTypes = { children: PropTypes.node, className: PropTypes.string, right: PropTypes.bool, grow: PropTypes.bool, }; ContentBlockInner.defaultProps = { right: false, grow: false, };