"use client"; import "@ant-design/v5-patch-for-react-19"; import styles from "./layout.module.css"; import HomeSidebar from "@/app/home/components/home-sidebar/HomeSidebar"; import HomeTitleBar from "@/app/home/components/home-titlebar/HomeTitleBar"; import React, { useState } from "react"; import { SidebarChildVO } from "@/app/home/components/home-sidebar/HomeSidebarChild"; export default function HomeLayout({ children }: Readonly<{ children: React.ReactNode; }>) { const [title, setTitle] = useState(""); const onSelectedChange = (child: SidebarChildVO) => { setTitle(child.name); }; return (
{/* 主页面 */}
{children}
); }