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

9 lines
292 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 (
2023-10-25 07:53:34 +00:00
<div className="card bg-gradient-to-r from-black to-neutral-950 shadow-lg shadow-black">
2023-09-03 12:46:07 +00:00
<div className="card-body p-4">{children}</div>
2023-09-02 07:24:30 +00:00
</div>
);
}