survey-react-ui
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
15 lines (14 loc) • 385 B
TypeScript
import * as React from "react";
interface IScrollComponentProps {
children: React.ReactNode;
disabled?: boolean;
}
export declare class Scroll extends React.Component<IScrollComponentProps, any> {
private model;
private rootRef;
constructor(props: any);
componentDidMount(): void;
componentWillUnmount(): void;
render(): React.JSX.Element;
}
export {};