import { PropsWithChildren } from 'react'; export default function CardContainer({ children }: PropsWithChildren) { return (
{children}
); }