@catho/quantum
Version:
Catho react components
13 lines (9 loc) • 305 B
TypeScript
// Generated with scripts/create-component.js
import { FC, ReactNode } from 'react';
export interface InfiniteScrollProps {
children: ReactNode[] | ReactNode;
reverse?: boolean;
onScrollEnd?: () => void;
}
declare const InfiniteScroll: FC<InfiniteScrollProps>;
export default InfiniteScroll;