Skip to content

Commit

Permalink
feat: sandbox spinner
Browse files Browse the repository at this point in the history
  • Loading branch information
He1DAr committed Dec 29, 2023
1 parent d8bac4b commit 3cfb43e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/sandbox/loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import React from 'react';

import { Flex } from '../../ui/Flex';
import { SkeletonText } from '../../ui/SkeletonText';
import { Spinner } from '../../ui/Spinner';

export default function Loading() {
return (
<Flex mt={46} width={'full'} p={6}>
<SkeletonText noOfLines={30} spacing={4} width={'100%'} />
<Flex width={'full'} p={6} alignItems={'center'} justifyContent={'center'}>
<Spinner />
</Flex>
);
}

0 comments on commit 3cfb43e

Please sign in to comment.