Files
quantulr a8b1ad286d update
2023-11-06 17:27:50 +08:00

19 lines
321 B
TypeScript

import ArticleList from "@/app/_components/ArticleList";
const Page = async ({
params,
}: {
params: {
pageIndex: string;
};
}) => {
const { pageIndex } = params;
return (
<div>
<ArticleList title={"公告通知"} cid={"3"} pageNo={parseInt(pageIndex)} />
</div>
);
};
export default Page;