mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-25 06:04:54 +00:00
17 lines
453 B
TypeScript
17 lines
453 B
TypeScript
import { LoadingSpinner } from '@/components/atoms'
|
|
|
|
interface LoadingFallbackProps {
|
|
message?: string
|
|
}
|
|
|
|
export function LoadingFallback({ message = 'Loading...' }: LoadingFallbackProps) {
|
|
return (
|
|
<div className="flex items-center justify-center h-full w-full">
|
|
<div className="flex flex-col items-center gap-3">
|
|
<LoadingSpinner />
|
|
<p className="text-sm text-muted-foreground">{message}</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|