UNPKG

react-nice-scroll

Version:

A React library to smooth scroll and scroll-based animations.

10 lines (9 loc) 288 B
import React, { FC } from 'react'; interface HorizontalSectionProps { children: React.ReactNode; toRight?: boolean; start?: string; addAnimation?: (fromTo: gsap.core.Tween) => void; } export declare const HorizontalSection: FC<HorizontalSectionProps>; export {};