vision-agent / app /project /loading.tsx
MingruiZhang's picture
save
abb7588
raw
history blame
211 Bytes
import { IconLoading } from '@/components/ui/Icons';
export default async function Loading() {
return (
<div className="flex justify-center items-center size-full text-sm">
<IconLoading />
</div>
);
}