import React from 'react'; import { Box, Flex, Skeleton, SkeletonText, useColorModeValue, VStack, } from '@chakra-ui/react'; import useSkeletonColor from '../../hooks/useSkeletonColor'; const DashboardSkeleton = () => { const skeletonColor = useSkeletonColor(); const ReactionBox = ({ m }) => { return ( ); }; return ( ); }; export default DashboardSkeleton;