mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-02 19:26:50 -05:00
41 lines
684 B
TypeScript
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;
|