芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/.cache/admin/src/components/Users/FilterPicker/index.js
import React from 'react'; import PropTypes from 'prop-types'; import { Picker } from '@buffetjs/core'; import Button from './Button'; import Card from './Card'; const FilterPicker = ({ onChange }) => { return (
(
{ if (value !== '') { onChange({ ...rest, value }); } onToggle(); }} /> )} /> ); }; FilterPicker.defaultProps = { onChange: () => {}, }; FilterPicker.propTypes = { onChange: PropTypes.func, }; export default FilterPicker;