Skip to main content

AutoscrollRunner component

The Autoscroll runner React component.

Signature

AutoscrollRunner(props: IAutoscrollProps): JSX.Element

Parameters

NameTypeOptionalDescription
propsIAutoscrollPropsNoSpecifies the component properties.

Return value

Returns the runner JSX.Element.

Example

import { AutoscrollRunner } from "tripetto-runner-autoscroll";
import ReactDOM from "react-dom";

ReactDOM.render(
<AutoscrollRunner definition={/* Supply your form definition here */} />,
document.getElementById("root")
);
tip

Read the React implementation guide for more information and examples.