-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
27 changed files
with
6,324 additions
and
191 deletions.
There are no files selected for viewing
1,306 changes: 1,306 additions & 0 deletions
1,306
src/components/tests/__snapshots__/ProfileTabs.test.tsx.snap
Large diffs are not rendered by default.
Oops, something went wrong.
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,57 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`Skeleton UI Should render 1`] = ` | ||
<main | ||
className="page-main font-serif" | ||
> | ||
<div | ||
className="border-2 p-2 md:p-4 min-h-screen min-w-full flex flex-col bg-white" | ||
> | ||
<div | ||
className="flex flex-row justify-between" | ||
> | ||
<div | ||
className="bg-gray-300 dark:bg-gray-600 h-12 animate-pulse rounded-md hidden md:block w-[50%] md:w-[10%] md:mr-2" | ||
/> | ||
<div | ||
className="bg-gray-300 dark:bg-gray-600 h-12 animate-pulse rounded-md w-[50%] md:mx-2" | ||
/> | ||
<div | ||
className="w-12 bg-gray-300 dark:bg-gray-600 animate-pulse h-12 rounded-full ml-auto mr-2 md:mx-2" | ||
/> | ||
<div | ||
className="bg-gray-300 dark:bg-gray-600 h-12 animate-pulse rounded-md w-[10%]" | ||
/> | ||
<div | ||
className="bg-gray-300 dark:bg-gray-600 h-12 animate-pulse hidden md:block rounded-md w-[20%] ml-2" | ||
/> | ||
</div> | ||
<div | ||
className="flex grow my-3 h-full flex-row justify-center" | ||
> | ||
<div | ||
className="flex flex-grow bg-gray-300 dark:bg-gray-600 rounded-xl animate-pulse md:mr-2" | ||
/> | ||
<div | ||
className="md:flex flex-grow hidden bg-gray-300 dark:bg-gray-600 rounded-xl animate-pulse ml-2" | ||
/> | ||
</div> | ||
<div | ||
className="h-[7vh] my-4 bg-gray-300 dark:bg-gray-600 animate-pulse w-[50%] rounded-md mx-auto" | ||
/> | ||
<div | ||
className="mt-auto w-full animate-pulse h-[8vh] flex justify-between" | ||
> | ||
<div | ||
className="w-full md:w-[33%] bg-gray-300 dark:bg-gray-600 rounded-md" | ||
/> | ||
<div | ||
className="hidden md:flex w-[33%] bg-gray-300 dark:bg-gray-600 rounded-md" | ||
/> | ||
<div | ||
className="hidden md:flex w-[33%] bg-gray-300 dark:bg-gray-600 rounded-md" | ||
/> | ||
</div> | ||
</div> | ||
</main> | ||
`; |
Oops, something went wrong.