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

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

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

/**
 * Компонент тела таба для {@link Panel}
 * @reactProps {string|number} eventKey - идентификатор для таба
 * @reactProps {node} children - элемент вставляемый в PanelTabBody
 */
export function PanelTabBody({ eventKey, children }) {
    return {children}
}

PanelTabBody.propTypes = {
    eventKey: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
        .isRequired,
    children: PropTypes.node,
}

export default PanelTabBody




© 2015 - 2024 Weber Informatics LLC | Privacy Policy