Newer
Older
taehui / qwilight-fe / src / app / [language] / avatar / loading.tsx
@Taehui Taehui on 17 Mar 218 bytes 2024-03-17 오후 2:12
import LoadingLayer from "@/components/LoadingLayer";
import { useTranslations } from "next-intl";

export default function Loading() {
  const t = useTranslations();

  return <LoadingLayer text={t("toAvatar")} />;
}