24 lines
379 B
TypeScript
24 lines
379 B
TypeScript
import React from "react";
|
|
import ArticleList from "@/app/_components/ArticleList";
|
|
|
|
const Page = ({
|
|
params,
|
|
}: {
|
|
params: {
|
|
pageIndex: string;
|
|
};
|
|
}) => {
|
|
const { pageIndex } = params;
|
|
return (
|
|
<>
|
|
<ArticleList
|
|
title={"综合新闻"}
|
|
cid={"4"}
|
|
pageNo={parseInt(pageIndex)}
|
|
></ArticleList>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Page;
|