This commit is contained in:
quantulr
2023-11-02 10:56:18 +08:00
parent 42d517f0a1
commit 593a8a0bc3
8 changed files with 181 additions and 0 deletions

View File

@ -0,0 +1,23 @@
import React from "react";
import ArticleList from "@/app/components/ArticleList";
const Page = ({
params,
}: {
params: {
pageIndex: string;
};
}) => {
const { pageIndex } = params;
return (
<>
<ArticleList
title={"分院生活剪影"}
cid={"13"}
pageNo={parseInt(pageIndex)}
></ArticleList>
</>
);
};
export default Page;