update
This commit is contained in:
23
app/(articles)/branch-life-sketch/pages/[pageIndex]/page.tsx
Normal file
23
app/(articles)/branch-life-sketch/pages/[pageIndex]/page.tsx
Normal 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;
|
Reference in New Issue
Block a user