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

components.widgets.List.ListMoreButton.jsx Maven / Gradle / Ivy

import React from 'react'
import { Button } from 'reactstrap'
import PropTypes from 'prop-types'

ListMoreButton.propTypes = {
    onClick: PropTypes.func,
    style: PropTypes.object,
}

ListMoreButton.defaultProps = {
    onClick: () => {},
}

/**
 * Кнопка "Загрузить еще"
 * @param {function} onClick - callback на клик по кнопке
 * @param {object} style - стили кнопки
 * @returns {*}
 * @constructor
 */
function ListMoreButton({ onClick, style }) {
    return (
        
) } export default ListMoreButton




© 2015 - 2025 Weber Informatics LLC | Privacy Policy