sendou.ink/components/builds/BuildsSkeleton.tsx
2020-11-25 17:31:02 +02:00

33 lines
559 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}
/>
</Flex>
);
export default BuildsSkeleton;