Files

22 lines
640 B
TypeScript
Raw Normal View History

2023-11-06 17:27:50 +08:00
import ArticleWithBreadcrumb from "@/app/_components/ArticleWithBreadcrumb";
2023-11-01 17:27:06 +08:00
import { ReactNode } from "react";
2023-11-06 17:27:50 +08:00
import { BreadcrumbItem } from "@/app/_components/Breadcrumb";
2023-11-01 17:27:06 +08:00
const breadcrumb: BreadcrumbItem[] = [
{ title: "首页", href: "/" },
{
title: "成果转化服务",
href: "/achievements-transformation/government-policy",
},
{ title: "政府政策", href: "/achievements-transformation/government-policy" },
];
const Layout = ({ children }: { children: ReactNode }) => {
return (
<ArticleWithBreadcrumb breadcrumb={breadcrumb}>
{children}
</ArticleWithBreadcrumb>
);
};
export default Layout;