import { memo } from "react"; import SingleAccountShimmer from "./SingleAccountShimmer"; const AccountListShimmer = () => { return (
{Array.from({ length: 5 }).map((_, index) => ( ))}
); }; export default memo(AccountListShimmer);