|
"use client";
|
|
|
|
import React from "react";
|
|
import { SpinLoading } from "antd-mobile";
|
|
export default function Loading() {
|
|
return (
|
|
<section className="w-full h-screen flex flex-col justify-center items-center bg-deepBg z-50">
|
|
<SpinLoading />
|
|
</section>
|
|
);
|
|
}
|