import { BlogCard } from "./BlogCard"; export const BlogList = ({ posts }) => { return (
{posts.map((post) => ( ))}
); };