28 lines
546 B
TypeScript
28 lines
546 B
TypeScript
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;
|
|
};
|
|
}) => {
|
|
return (
|
|
<ArticleLayout leftNavTitle={"新闻详情"} navigations={[]}>
|
|
{children}
|
|
</ArticleLayout>
|
|
);
|
|
};
|
|
|
|
export default Layout;
|