2023-11-06 17:27:50 +08:00
|
|
|
import ArticleLayout from "@/app/_components/ArticleLayout";
|
2023-11-01 17:27:06 +08:00
|
|
|
import { ReactNode } from "react";
|
|
|
|
import { navigations } from "@/app/(introduce)/achievements-transformation/config";
|
|
|
|
|
|
|
|
const Layout = ({ children }: { children: ReactNode }) => {
|
|
|
|
return (
|
|
|
|
<ArticleLayout leftNavTitle={"成果转化服务"} navigations={navigations}>
|
|
|
|
{children}
|
|
|
|
</ArticleLayout>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Layout;
|