Skip to main content

ChatRunner component

The Chat runner React component.

Signature

ChatRunner(props: IChatProps): JSX.Element

Parameters

NameTypeOptionalDescription
propsIChatPropsNoSpecifies the component properties.

Return value

Returns the runner JSX.Element.

Example

import { ChatRunner } from "tripetto-runner-chat";
import ReactDOM from "react-dom";

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

Read the React implementation guide for more information and examples.