import React, { Component } from "react"; import OstMask from "../OstMask/index"; import styles from "./style.less"; interface LoadingProps { isLoading?: boolean; loadingText?: string; } class Loading extends Component { render() { const { isLoading, loadingText } = this.props; let text = loadingText || "加载中…"; return (
{text}
); } } export default Loading;