Files
frontend/src/app/(withAuth)/(dashboardLayout)/dashboard/machines/loading.jsx
2026-06-13 11:48:47 +03:30

8 lines
158 B
JavaScript

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