import { ReactNode } from "react"; import classNames from "classnames"; import Card from "@/views/common/Card"; import "./TimelinePostCard.css"; interface TimelinePostCardProps { className?: string; children?: ReactNode; } export default function TimelinePostCard({ className, children, }: TimelinePostCardProps) { return ( {children} ); }