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

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

There is a newer version: 7.28.3
Show newest version
import React from 'react'
import PropTypes from 'prop-types'
import { CardFooter } from 'reactstrap'

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

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

export default PanelFooter




© 2015 - 2025 Weber Informatics LLC | Privacy Policy