import ArticleCard from './ArticleCard'; import styles from './ArticleGrid.module.css'; export default function ArticleGrid({ articles }) { if (!articles.length) { return

还没有文章,去写第一篇吧 ✦

; } return (
{articles.map((article, i) => ( ))}
); }