import InternalArticleList from "@/components/article-list";
import type { ArticleListBlock } from "@/types";

type ArticleListProps = ArticleListBlock;

export default function ArticleList({ title, posts, news }: ArticleListProps) {
  const articles = [...(posts ?? []), ...(news ?? [])];
  return <InternalArticleList title={title} articles={articles} />;
}
