Files

20 lines
351 B
TypeScript
Raw Normal View History

2023-10-27 17:29:50 +08:00
import { ReactNode } from "react";
2023-11-06 17:27:50 +08:00
import ArticleLayout from "@/app/_components/ArticleLayout";
2023-10-27 17:29:50 +08:00
const Layout = ({
children,
}: {
children: ReactNode;
params: {
articleId: string;
};
}) => {
2023-10-29 22:25:16 +08:00
return (
<ArticleLayout leftNavTitle={"新闻详情"} navigations={[]}>
2023-11-01 17:27:06 +08:00
{children}
2023-10-29 22:25:16 +08:00
</ArticleLayout>
);
2023-10-27 17:29:50 +08:00
};
export default Layout;