芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/@buffetjs/custom/src/components/List/index.js
/** * * List * */ import React from 'react'; import PropTypes from 'prop-types'; import { List as ListCompo, ListHeader, Padded } from '@buffetjs/core'; import { Card } from '@buffetjs/styles'; function List({ title, subtitle, button, isLoading, items, customRowComponent, }) { return (
); } List.defaultProps = { button: null, customRowComponent: null, isLoading: false, items: [], title: null, subtitle: null, }; List.propTypes = { button: PropTypes.shape({ color: PropTypes.string, icon: PropTypes.bool, type: PropTypes.string, }), customRowComponent: PropTypes.func, isLoading: PropTypes.bool, items: PropTypes.instanceOf(Array), subtitle: PropTypes.string, title: PropTypes.string, }; export default List;