-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1177cc7
commit 208331b
Showing
3 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
app/github.com/[user]/[repo]/tree/[branch]/[...path]/loading.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Skeleton } from "@/components/ui/skeleton"; | ||
|
||
export default function Loading() { | ||
return ( | ||
<div className="container px-4 py-12 md:px-6 lg:py-16"> | ||
<h1 className="text-2xl mb-2">Import GitHub repository</h1> | ||
<Skeleton className="h-5 w-20 mb-2 rounded-md bg-muted" /> | ||
<Skeleton className="h-10 mb-2 w-full rounded-md bg-muted" /> | ||
<Skeleton className="h-5 w-48 mb-8 rounded-md bg-muted" /> | ||
<Skeleton className="h-5 w-20 mb-2 rounded-md bg-muted" /> | ||
<Skeleton className="h-10 mb-2 w-full rounded-md bg-muted" /> | ||
<Skeleton className="h-5 w-48 mb-8 rounded-md bg-muted" /> | ||
<Skeleton className="h-10 w-20 mb-2 rounded-md bg-muted" /> | ||
</div> | ||
); | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters