-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(frontend): ✨ loading skeleton for satellites page (#198)
- Loading branch information
Mats
authored and
GitHub
committed
Apr 4, 2024
1 parent
da1ba7d
commit 82e34cc
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
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,23 @@ | ||
| import { Skeleton } from "@/components/ui/skeleton"; | ||
| import React from "react"; | ||
|
|
||
| export default function Loading() { | ||
| return ( | ||
| <div> | ||
| {/* Full width div, split into three equal portions */} | ||
| <div className="flex w-full origin-center flex-col justify-center"> | ||
| <div className="my-10 flex w-full origin-center flex-row flex-wrap justify-center gap-4"> | ||
| <Skeleton className="flex h-96 w-1/4 flex-col " /> | ||
| <Skeleton className="flex h-96 w-1/4 flex-col " /> | ||
| <Skeleton className="flex h-96 w-1/4 flex-col " /> | ||
| <Skeleton className="flex h-96 w-1/4 flex-col " /> | ||
| <Skeleton className="flex h-96 w-1/4 flex-col " /> | ||
| <Skeleton className="flex h-96 w-1/4 flex-col " /> | ||
| <Skeleton className="flex h-96 w-1/4 flex-col " /> | ||
| <Skeleton className="flex h-96 w-1/4 flex-col " /> | ||
| <Skeleton className="flex h-96 w-1/4 flex-col " /> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| ); | ||
| } |