import { Component } from 'react'
import { Spin } from 'antd'
import './index.less'
export default class LoadingData extends Component {
render() {
let { tip = '数据加载中' } = this.props
return (
<div styleName="loading"> // styleName 是公司的一种混淆 处理react 样式作用域的
<Spin tip={tip} />
</div>
)
}
}
.loading {
text-align: center;
padding: 30px 0;
}