8 lines
194 B
TypeScript
8 lines
194 B
TypeScript
"use client";
|
|
|
|
import { LoadingState } from "@/components/ds";
|
|
|
|
export default function Loading() {
|
|
return <LoadingState label="در حال بارگذاری ارسالها…" />;
|
|
}
|