import { TrashSectionClient } from "@/components/trash/trash-section-client"

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

export default async function TrashSectionPage({ params }: TrashSectionPageProps) {
  const { section } = await params
  return <TrashSectionClient section={section} />
}
