15 lines
450 B
TypeScript
15 lines
450 B
TypeScript
import { Box, Skeleton } from '@chakra-ui/react'
|
|
|
|
const PrivacyPolicySkeleton = () => {
|
|
return (
|
|
<Box px={3} pb={3} w="90%">
|
|
<Skeleton height="20px" mb="10px" width="90%" />
|
|
<Skeleton height="20px" mb="15px" width="90%" />
|
|
<Skeleton height="20px" mb="10px" width="90%" />
|
|
<Skeleton height="20px" mb="10px" width="80%" />
|
|
<Skeleton height="20px" width="60%" />
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
export default PrivacyPolicySkeleton |