19 lines
308 B
TypeScript
19 lines
308 B
TypeScript
![]() |
import ArticleList from "@/app/components/ArticleList";
|
||
|
|
||
|
const Page = ({
|
||
|
params,
|
||
|
}: {
|
||
|
params: {
|
||
|
pageIndex: string;
|
||
|
};
|
||
|
}) => {
|
||
|
const { pageIndex } = params;
|
||
|
return (
|
||
|
<>
|
||
|
<ArticleList title={"学术活动"} cid={"6"} pageNo={parseInt(pageIndex)} />
|
||
|
</>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default Page;
|