Files
quantulr 1a22404f19 update
2023-11-01 17:27:06 +08:00

19 lines
320 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;