"use client"; import { type ReactNode } from "react"; import { VipHeader } from "./VipHeader"; import styles from "./vip.module.css"; type VipLayoutProps = { children: ReactNode; isLoggedIn: boolean; userName?: string | null; userEmail?: string | null; wechatNick?: string | null; wechatAvatar?: string | null; onLogout?: () => void; }; export function VipLayout({ children, isLoggedIn, userName, userEmail, wechatNick, wechatAvatar, onLogout, }: VipLayoutProps) { return (
{children}
); }