diff --git a/frontend/src/app/projects/[projectSlug]/loading.tsx b/frontend/src/app/projects/[projectSlug]/loading.tsx new file mode 100644 index 0000000..6696311 --- /dev/null +++ b/frontend/src/app/projects/[projectSlug]/loading.tsx @@ -0,0 +1,13 @@ +import React from "react"; + +// Assuming the correct import path for the Skeleton component +import { Skeleton } from "@/components/ui/skeleton"; + +export default function Loading() { + return ( +
+ + +
+ ); +}