Files

14 lines
378 B
TypeScript
Raw Normal View History

2023-11-06 17:27:50 +08:00
import ArticleLayout from "@/app/_components/ArticleLayout";
2023-10-29 22:25:16 +08:00
import { ReactNode } from "react";
2023-11-01 17:27:06 +08:00
import { navigations } from "@/app/(introduce)/talents/config";
2023-10-29 22:25:16 +08:00
const Layout = ({ children }: { children: ReactNode }) => {
return (
<ArticleLayout leftNavTitle={"人才队伍"} navigations={navigations}>
{children}
</ArticleLayout>
);
};
export default Layout;