import React, { memo } from 'react'; import { Skeleton } from '@/shared/antd-imports'; // Lightweight loading component with skeleton animation export const SuspenseFallback = memo(() => { return (
); }); // Lightweight fallback for internal components that doesn't cover the screen export const InlineSuspenseFallback = memo(() => { return (
); }); SuspenseFallback.displayName = 'SuspenseFallback'; InlineSuspenseFallback.displayName = 'InlineSuspenseFallback';