Files

21 lines
701 B
TypeScript
Raw Normal View History

2023-11-06 17:27:50 +08:00
import ArticleLayout from "@/app/_components/ArticleLayout";
2023-10-30 17:29:35 +08:00
import { ReactNode } from "react";
const navigations = [
{ title: "综合办公室", href: "/organization/func-dep/general-office" },
{ title: "人事处", href: "/organization/func-dep/personnel" },
{ title: "科技处", href: "/organization/func-dep/technology" },
{ title: "产业处", href: "/organization/func-dep/industry" },
{ title: "资产财务处", href: "/organization/func-dep/asset-finance" },
];
const Layout = ({ children }: { children: ReactNode }) => {
return (
<ArticleLayout leftNavTitle={"职能部门"} navigations={navigations}>
{children}
</ArticleLayout>
);
};
export default Layout;