eff-anim
Version:
Librería de efectos y animaciones con React
13 lines (9 loc) • 345 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { ReactNode } from 'react';
interface ContainerViewsProps {
children: ReactNode;
threshold?: number;
effect?: string;
}
declare const ContainerViews: ({ children, threshold, effect, }: ContainerViewsProps) => react_jsx_runtime.JSX.Element;
export { ContainerViews };