Files
frontend/src/app/(withAuth)/(dashboardLayout)/dashboard/machines/loading.jsx

8 lines
151 B
JavaScript

"use client";
import PageLoading from "@/core/components/PageLoading";
const Loading = () => {
return <PageLoading />;
};
export default Loading;