sendou.ink/components/builds/BuildsSkeleton.tsx
Kalle (Sendou) bde800603a Show extra build loading skeleton
Change to the layout made it so that three often looks weird.
2021-05-05 17:32:26 +03:00

41 lines
684 B
TypeScript

import { Flex, Skeleton } from "@chakra-ui/react";
const BuildsSkeleton = () => (
<Flex flexWrap="wrap" justifyContent="center" mt={4}>
<Skeleton
w="300px"
height="500px"
rounded="lg"
boxShadow="md"
p="20px"
m={2}
/>
<Skeleton
w="300px"
height="500px"
rounded="lg"
boxShadow="md"
p="20px"
m={2}
/>
<Skeleton
w="300px"
height="500px"
rounded="lg"
boxShadow="md"
p="20px"
m={2}
/>
<Skeleton
w="300px"
height="500px"
rounded="lg"
boxShadow="md"
p="20px"
m={2}
/>
</Flex>
);
export default BuildsSkeleton;