import { useContext } from 'react'; import Skeleton, { SkeletonTheme } from 'react-loading-skeleton'; import { Section } from 'twenty-ui/layout'; import { ThemeContext } from 'twenty-ui/theme-constants'; export const UsageSectionSkeleton = () => { const { theme } = useContext(ThemeContext); return (
); };