Blum / frontend /components /LoadingState.tsx
Italianhype's picture
Convert to Docker Next.js FastAPI platform
5d6c194 verified
Raw
History Blame Contribute Delete
203 Bytes
export function LoadingState({ label = "Loading intelligence snapshot" }: { label?: string }) {
return (
<div className="loading-state">
<div />
<span>{label}</span>
</div>
);
}