All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.snippets.Panel.PanelHeading.jsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import PropTypes from 'prop-types'
import { CardHeader } from 'reactstrap'

/**
 * Компонент шапки для {@link Panel}
 * @reactProps {node} children - вставляемый внутрь PanelHeading элемент
 */
function PanelHeading({ children }) {
    return (
        
            {children}
        
    )
}

PanelHeading.propTypes = {
    children: PropTypes.node,
}

export default PanelHeading




© 2015 - 2024 Weber Informatics LLC | Privacy Policy