import React, { ReactNode } from "react"; import Breadcrumb from "@/app/components/Breadcrumb"; const breadcrumb = [ { href: "/", title: "首页" }, { href: "/organization/overview", title: "机构设置" }, { href: "/organization/overview", title: "机构简介" }, ]; const Layout = ({ children }: { children: ReactNode }) => { return (
{children}
); }; export default Layout;