import Avatar from "./avatar"; import Date from "./date"; import CoverImage from "./cover-image"; import PostTitle from "./post-title"; import Author from "../types/author"; import Picture from "../types/picture"; type Props = { title: string; coverImage: Picture; date: string; author: Author; }; export default function PostHeader({ title, coverImage, date, author }: Props) { return ( <> {title}
); }