'use client' import SideNav from '@/app/ui/dashboard/sidenav'; import TreeTable from "@/app/ui/task/project/TreeTable"; import '@/app/ui/task/four/index.modules.css' import {useEffect} from "react"; export default function Layout({children}: { children: React.ReactNode }) { // useEffect(() => { // // @ts-ignore // const divWidth = document.getElementById('myDiv').offsetWidth; // // @ts-ignore // document.getElementById('mySpan').style.fontSize = divWidth + 'px'; // }, []); // 这里的空数组表示只在组件挂载时执行一次 // // return ( // <> //