mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-08 23:06:03 +00:00
* Initial plan * fix: change loading animation to display only in content area instead of full screen Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: RockChinQ <45992437+RockChinQ@users.noreply.github.com>
10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import { LoadingSpinner } from '@/components/ui/loading-spinner';
|
|
|
|
export default function Loading() {
|
|
return (
|
|
<div className="flex h-full items-center justify-center">
|
|
<LoadingSpinner size="lg" />
|
|
</div>
|
|
);
|
|
}
|