UNPKG

fullpage-scroll-component

Version:
9 lines (8 loc) 302 B
import { HTMLAttributes } from "react"; type PageProps = HTMLAttributes<HTMLDivElement> & {}; /** * @description * StepScroll 컴포넌트의 children으로만 사용할 수 있는 컴포넌트 입니다. */ declare function Page({ children, ...args }: PageProps): JSX.Element; export default Page;