React 组件之加载图Loading

import React, { PureComponent } from "react";
import { ActivityIndicator } from "antd-mobile";

export default class Loading extends PureComponent {
  static defaultProps = {
    show: false
  };

  render() {
    const { show } = this.props;
    return (
      
); } }

 

你可能感兴趣的:(React)