test_task_crm/frontend/src/components/system/app-loading.tsx

9 lines
400 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const AppLoading = () => (
<div className="flex min-h-screen items-center justify-center bg-background text-foreground">
<div className="space-y-3 text-center">
<div className="mx-auto h-10 w-10 animate-spin rounded-full border-2 border-primary border-t-transparent" />
<p className="text-sm text-muted-foreground">Загружаем Kitchen CRM</p>
</div>
</div>
)