add loading state for workflow

This commit is contained in:
Ramnique Singh 2025-08-18 14:19:12 +05:30
parent 9219590d64
commit 1bfcf69baf

View file

@ -0,0 +1,8 @@
"use client";
import { Spinner } from "@heroui/react";
export default function Loading() {
return <div className="flex flex-col gap-4">
<Spinner size="sm" />
</div>;
}