import classNames from 'classnames'; import PropTypes from 'prop-types'; import React from 'react'; export default function PanelComponent(props) { const { title, className, children, ...rest } = props; const cn = classNames(className, 'flex-col'); return (
{title}
{children}
); } PanelComponent.propTypes = { title: PropTypes.node, className: PropTypes.string, children: PropTypes.node, };