import { ReactNode } from "react"; const CardGrid = ({ children }: { children: ReactNode }) => { return (
{children}
); }; export default CardGrid;