"use client"; import { usePathname } from "next/navigation"; import Link from "next/link"; export default function BillLayout({ children }) { const pathname = usePathname(); return (
消费 充值 收益 提现
{children}
); }