23 lines
343 B
TypeScript
23 lines
343 B
TypeScript
import ArticleList from "@/app/_components/ArticleList";
|
|
|
|
const Page = ({
|
|
params,
|
|
}: {
|
|
params: {
|
|
pageIndex: string;
|
|
};
|
|
}) => {
|
|
const { pageIndex } = params;
|
|
return (
|
|
<>
|
|
<ArticleList
|
|
title={"研究院招聘"}
|
|
cid={"12"}
|
|
pageNo={parseInt(pageIndex)}
|
|
/>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Page;
|