UNPKG

immersivity_react

Version:

Immersivity React wrapper. Feel the depth.

11 lines (10 loc) 285 B
import React from "react"; export interface ContainerType { Component?: React.FC<{ className: string; [key: string]: any; }>; className?: string; [key: string]: any; } export declare const ParallaxContainer: (props: ContainerType) => React.JSX.Element;