import { ArticlesSectionClient } from "@/components/articles/articles-section-client"

type ArticlesSectionPageProps = {
  params: Promise<{ section: string }>
}

export default async function ArticlesSectionPage({
  params,
}: ArticlesSectionPageProps) {
  const { section } = await params
  return <ArticlesSectionClient section={section} />
}
