in packages/react/react-application/src/index.tsx [191:200]
private getLoading() {
const { loading } = this.props;
if (loading === false) {
return null;
} else if (loading && React.isValidElement(loading)) {
return loading;
}
return <Skeleton active />;
}