Files

19 lines
320 B
TypeScript
Raw Normal View History

2023-11-01 17:27:06 +08:00
import ArticleList from "@/app/components/ArticleList";
2023-10-30 17:29:35 +08:00
const Page = async ({
params,
}: {
params: {
pageIndex: string;
};
}) => {
2023-11-01 17:27:06 +08:00
const { pageIndex } = params;
2023-10-30 17:29:35 +08:00
return (
<div>
2023-11-01 17:27:06 +08:00
<ArticleList title={"公告通知"} cid={"3"} pageNo={parseInt(pageIndex)} />
2023-10-30 17:29:35 +08:00
</div>
);
};
export default Page;