import React from 'react'; import { Select } from 'antd'; import { observer } from 'mobx-react'; import { HotelStars as options } from '../../libs/ht'; const HotelStars = (props) => { const { mode, value, onChange, show_all, ...extProps } = props; const _show_all = ['tags', 'multiple'].includes(mode) ? false : show_all; return (