ClassicRunner component
The Classic runner React component.
Signature
ClassicRunner(props: IClassicProps): JSX.Element
Parameters
Name | Type | Optional | Description |
---|---|---|---|
props | IClassicProps | No | Specifies the component properties. |
Return value
Returns the runner JSX.Element
.
Example
import { ClassicRunner } from "@tripetto/runner-classic-fluentui";
import ReactDOM from "react-dom";
ReactDOM.render(
<ClassicRunner definition={/* Supply your form definition here */} />,
document.getElementById("root")
);
tip
Read the React implementation guide for more information and examples.