import { FC } from "react"; import { Box, ListingGrid, ModuleBase, Text, CMSModule, } from "../../components"; const TeamMemberListingGroup: FC = ({ data, index, moduleAnims, totalNum, textStyles, ...props }) => { if (!data) return null; const renderCards = (data: any) => { if (!data) return []; return data.map((card: any, index: number) => { // console.log(data, card); return ( ); }); }; return ( ); }; export default TeamMemberListingGroup;