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

components.widgets.Card.CardLayout.jsx Maven / Gradle / Ivy

The newest version!
import React from 'react'
import PropTypes from 'prop-types'
import cx from 'classnames'

/**
 * Лайоут для Карточек
 * @param {node} children - элемент потомок компонента CardLayout
 * @param {string} className - Кастомный класс для компонента
 * @param {...any} rest
 * @returns {*}
 * @constructor
 */
function CardLayout({ children, className, ...rest }) {
    return (
        
{children}
) } CardLayout.propTypes = { children: PropTypes.node, className: PropTypes.string, } export default CardLayout




© 2015 - 2024 Weber Informatics LLC | Privacy Policy