import React from 'react'; import View from '../View'; import Text from '../Text'; interface ListTipProps { loading: boolean; nodata: boolean; style?: any; } class ListTip extends React.Component { render() { const { props } = this; return ( {props.loading && !props.nodata && 正在加载... } {props.nodata && 没有更多了 } ); } } export default ListTip;