Files

28 lines
546 B
TypeScript
Raw Normal View History

2023-10-27 17:29:50 +08:00
import { ReactNode } from "react";
import ArticleLayout from "@/app/components/ArticleLayout";
const navLinks = [
{ title: "人才概况", href: "/" },
{ title: "人才概况", href: "/3" },
{ title: "人才概况", href: "/4" },
{ title: "人才概况", href: "/5" },
];
const Layout = ({
children,
params,
}: {
children: ReactNode;
params: {
articleId: string;
};
}) => {
2023-10-29 22:25:16 +08:00
return (
<ArticleLayout leftNavTitle={"新闻详情"} navigations={[]}>
{children}
</ArticleLayout>
);
2023-10-27 17:29:50 +08:00
};
export default Layout;