'use client' import type { ReactNode } from 'react' import { usePluginPageContext } from '@/app/components/plugins/plugin-page/context' import cn from '@/utils/classnames' type HeaderWrapperProps = { children: ReactNode } const HeaderWrapper = ({ children, }: HeaderWrapperProps) => { const scrollDisabled = usePluginPageContext(v => v.scrollDisabled) return (
{children}
) } export default HeaderWrapper