19 lines
321 B
TypeScript
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;
|