UNPKG

denwa-web-shared

Version:

A shared library for Next.js App Router projects containing reusable components, hooks, schemas, and utilities.

11 lines (10 loc) 304 B
import { FC } from '../../../node_modules/react'; interface HeaderWrapperProps { children: React.ReactNode; className?: string; hideClassName?: string; scrollPosition?: number; hideBackgroundOnScroll?: boolean; } export declare const HeaderWrapper: FC<HeaderWrapperProps>; export {};