TAO/client/src/components/PostCard/CardContainer.tsx

9 lines
298 B
TypeScript
Raw Normal View History

2023-09-02 07:24:30 +00:00
import { PropsWithChildren } from 'react';
export default function CardContainer({ children }: PropsWithChildren) {
return (
<div className="card bg-gradient-to-r from-base-200 to-base-100 shadow-lg shadow-black">
<div className="card-body gap-4 p-4">{children}</div>
</div>
);
}