import React from "react"; import Skeleton, { SkeletonTheme } from "react-loading-skeleton"; import "react-loading-skeleton/dist/skeleton.css"; import "./ConsolidatedCirculationList.css"; export const ConsolidatedCirculationListSkeleton: React.FC = () => { return ( <>
{[1, 2, 3, 4, 5].map((i) => (
))}
); };