import React from "react"; import { Spin } from "antd"; const AppLoading = (props) => { const { text, loading, children: ChildComponents } = props; return (
{loading ?
: ChildComponents}
); }; export default AppLoading;