saas_app/src/app/_components/loading/loading.tsx

18 lines
No EOL
340 B
TypeScript

import React from "react";
import SkeletonCard from "./skeletonCard";
import SkeletonTable from "./skeletonTable";
export default function Loading({ type }: any) {
switch (type) {
case 1:
return <SkeletonCard />;
break;
case 2:
return <SkeletonTable />
break;
}
}